From 69e656221cd4fc596883a79d732a19f8b870e1c1 Mon Sep 17 00:00:00 2001 From: Simon Branford Date: Sat, 7 Sep 2024 12:04:33 +0100 Subject: [PATCH 01/13] 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 0000000000..fa493b402b --- /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 534b9cec9f..17a7e0bf3c 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 418c488782..536d7e34aa 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 02/13] 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 dfaf8ecaa7..0000000000 --- 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 0000000000..5074671776 --- /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 0000000000..7492e4fd7b --- /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 0000000000..3e7ecb37ce --- /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 0000000000..8047ef088c --- /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 0000000000..ba3406048f --- /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 0000000000..28bc253197 --- /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 0000000000..3738656045 --- /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 0000000000..bff51d8c29 --- /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 0000000000..97bf19cd97 --- /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 0000000000..9f57189213 --- /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 0000000000..1afa9311f9 --- /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 0000000000..470d0851aa --- /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 0000000000..493c7b5a1e --- /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 0000000000..9c34a6ba26 --- /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 0000000000..4801548ba8 --- /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 0000000000..61954f91c4 --- /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 0000000000..0768560082 --- /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 0000000000..4a6888d20f --- /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 0000000000..359e030d03 --- /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 0000000000..cfa4a25310 --- /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 0000000000..3c36769ef5 --- /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 0000000000..2501302cf6 --- /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 0000000000..076ea3c9e5 --- /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 0000000000..f00728537e --- /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 0000000000..f17011b482 --- /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 0000000000..8d4db4bd50 --- /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 0000000000..0074570eb2 --- /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 0000000000..667583f31c --- /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 0000000000..57fda9c37f --- /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 0000000000..346bd8a388 --- /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 0000000000..5c35bdadf8 --- /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 0000000000..18ea0abd32 --- /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 0000000000..51913e22ef --- /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 0000000000..7c2c93fc18 --- /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 0000000000..a0c6c1db46 --- /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 0000000000..f6f1025c77 --- /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 0000000000..9d1cd22fd6 --- /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 0000000000..dbdaab335c --- /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 0000000000..f95eb6b932 --- /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 0000000000..cc8a15f2e3 --- /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 0000000000..18721a0bae --- /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 0000000000..f44ae7a404 --- /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 0000000000..b1e6085462 --- /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 0000000000..adf448c12e --- /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 0000000000..b7610145f7 --- /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 0000000000..4ad3b11e18 --- /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 0000000000..834ba57c55 --- /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 0000000000..6a94cee266 --- /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 0000000000..9c6497ef42 --- /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 0000000000..d0e552a370 --- /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 0000000000..a0ad3a813a --- /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 0000000000..0ca06b4ef9 --- /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 0000000000..7b730a2ba1 --- /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 0000000000..094fec40fa --- /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 0000000000..80863ad7cc --- /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 0000000000..f51939294d --- /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 0000000000..8491d12963 --- /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 0000000000..b44886a156 --- /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 0000000000..913d245278 --- /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 0000000000..eda1b1f8d2 --- /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 0000000000..5f61c0a661 --- /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 0000000000..1ca0784333 --- /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 0000000000..e0c6cb9543 --- /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 0000000000..abd872d1fc --- /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 0000000000..45e46dc074 --- /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 0000000000..cea46c02c2 --- /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 0000000000..7995c5cc00 --- /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 0000000000..ec71fc11bd --- /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 0000000000..1250fd19a8 --- /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 0000000000..fbf5df79a5 --- /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 0000000000..9765aba378 --- /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 0000000000..eda6b9a048 --- /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 0000000000..5979a63726 --- /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 0000000000..675cea1fde --- /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 0000000000..807f9deebd --- /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 0000000000..33d7ec9cd7 --- /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 0000000000..14eb34e1c4 --- /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 0000000000..a384061ea9 --- /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 0000000000..08e867377c --- /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 0000000000..198662da55 --- /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 0000000000..17c380c7d9 --- /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 0000000000..04ebace13e --- /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 0000000000..2e75972be7 --- /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 0000000000..74cee77d51 --- /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 0000000000..6e487b07ec --- /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 0000000000..24b3246441 --- /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 0000000000..41b1928b53 --- /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 0000000000..5f8260b9dc --- /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 0000000000..3f3e927a77 --- /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 0000000000..5aa69fa133 --- /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 0000000000..505fcee134 --- /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 0000000000..efef948c3a --- /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 0000000000..74ad2f1af0 --- /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 0000000000..b97e51f885 --- /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 0000000000..ad53d119f9 --- /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 0000000000..7a45c8cfb2 --- /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 0000000000..5b2c9d0117 --- /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 0000000000..52b7fd90d3 --- /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 0000000000..5a47256f8b --- /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 0000000000..904207b0b3 --- /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 0000000000..0949167980 --- /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 0000000000..99213b3cf3 --- /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 0000000000..5b7e280fb1 --- /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 0000000000..732d6ae5e2 --- /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 0000000000..6e27711148 --- /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 0000000000..32eef816ff --- /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 0000000000..847746714f --- /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 0000000000..4c9b4c50c4 --- /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 0000000000..1914b975bf --- /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 0000000000..85238b8a7e --- /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 0000000000..c58e1bbb18 --- /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 0000000000..88611866f3 --- /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 0000000000..469cb1f96d --- /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 0000000000..ddf6fbbbff --- /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 0000000000..3b2ae993c6 --- /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 0000000000..97ca904b66 --- /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 0000000000..4fc878f55b --- /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 0000000000..c0dc6bc72a --- /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 0000000000..ad774f3ea2 --- /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 0000000000..2c35aefe9a --- /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 0000000000..cd27043da5 --- /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 0000000000..309c26c91a --- /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 0000000000..ec6d517f43 --- /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 0000000000..6c88585e8e --- /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 0000000000..30ae167b18 --- /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 0000000000..7e072ce6f8 --- /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 0000000000..fc837dd438 --- /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 0000000000..025864bcd9 --- /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 0000000000..4e9a3d6cf7 --- /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 0000000000..7ca70a50cd --- /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 0000000000..e9e192e603 --- /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 0000000000..c1a462f962 --- /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 0000000000..d9fd83dbd8 --- /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 0000000000..1b34398e5e --- /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 0000000000..0bcb49452d --- /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 0000000000..a4213ec2bc --- /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 0000000000..2ecb61ab8f --- /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 0000000000..009d675a23 --- /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 0000000000..fcc320d8a1 --- /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 0000000000..2b67ca63e6 --- /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 0000000000..36e0fc057a --- /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 0000000000..7466b1de92 --- /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 0000000000..c59aac7550 --- /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 0000000000..907383cd1f --- /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 0000000000..ef4428aa2d --- /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 0000000000..4562694fa3 --- /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 0000000000..f384a8ba9c --- /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 0000000000..2bf28252fb --- /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 0000000000..6d009f50b9 --- /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 0000000000..67a5a15e9e --- /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 0000000000..36e0fc82e8 --- /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 0000000000..af90300fe5 --- /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 0000000000..c4f3b339c1 --- /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 0000000000..72bf966162 --- /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 0000000000..791627a110 --- /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 0000000000..07f6581c21 --- /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 0000000000..693c040c6a --- /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 0000000000..b83aa9ab12 --- /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 0000000000..2871ed18df --- /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 0000000000..bc9cf3d4cf --- /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 0000000000..644a06bb9a --- /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 0000000000..6d41243ccd --- /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 0000000000..53553e4374 --- /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 0000000000..2ac11d3642 --- /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 0000000000..fbf0122229 --- /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 0000000000..7e46a4d900 --- /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 0000000000..0ff2174141 --- /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 0000000000..859f7fa9b2 --- /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 0000000000..e81dbb0be8 --- /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 0000000000..e3bcd90a33 --- /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 0000000000..337494a569 --- /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 0000000000..90d8711cc0 --- /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 0000000000..5690b20b7c --- /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 0000000000..3a52b8473e --- /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 0000000000..05c3e6cd17 --- /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 0000000000..08171fa964 --- /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 0000000000..4a4ffe942d --- /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 0000000000..9962057717 --- /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 0000000000..cf3443e69f --- /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 0000000000..2e417a6b2c --- /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 0000000000..a5286d4beb --- /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 0000000000..c52aa9e719 --- /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 0000000000..93e5cada2e --- /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 0000000000..b7bd118a09 --- /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 0000000000..6a032b95b1 --- /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 0000000000..f5603e0fda --- /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 0000000000..1756d79b6a --- /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 0000000000..a62b264d02 --- /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 0000000000..eb8072703c --- /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 0000000000..5e5b5736f9 --- /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 0000000000..3218c275a1 --- /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 0000000000..5b54824206 --- /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 0000000000..9faab33474 --- /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 0000000000..5f722ce29f --- /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 0000000000..4003e79f1a --- /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 0000000000..1b5a12b92b --- /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 0000000000..c8d6f0f281 --- /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 0000000000..a0fb224db7 --- /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 0000000000..297aa3c597 --- /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 0000000000..e81043609e --- /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 0000000000..a3fb17d031 --- /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 0000000000..8c942c88c4 --- /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 0000000000..45033863fc --- /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 0000000000..47d388f4a8 --- /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 0000000000..a221b9c51e --- /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 0000000000..867522750f --- /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 0000000000..dee3ba93c4 --- /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 0000000000..c0c9ff64fd --- /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 0000000000..a8dfd0a252 --- /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 0000000000..65156b78d1 --- /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 0000000000..79cea3a2e6 --- /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 0000000000..4550e7f3d9 --- /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 0000000000..72c66fdb5e --- /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 0000000000..81e566a640 --- /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 0000000000..e8be4cb7c2 --- /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 0000000000..e7f35f558b --- /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 0000000000..8c9afd7ba8 --- /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 0000000000..988927beee --- /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 0000000000..588e5eafe2 --- /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 0000000000..f8ff34114d --- /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 0000000000..1bf1f5be57 --- /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 0000000000..96096e94ca --- /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 0000000000..f2959b748a --- /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 0000000000..4dace89370 --- /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 0000000000..aecfaa2582 --- /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 0000000000..1b30c63c1f --- /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 0000000000..6e797ba2b9 --- /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 0000000000..0aa368de1c --- /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 0000000000..4d315f8fbd --- /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 0000000000..40845cf546 --- /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 0000000000..af21fcf49b --- /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 0000000000..b8d89c2148 --- /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 0000000000..0ee3f8fad5 --- /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 0000000000..fb65173158 --- /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 0000000000..535898fe71 --- /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 0000000000..96ccd3d6bb --- /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 0000000000..055e085296 --- /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 0000000000..f643f2e357 --- /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 0000000000..33b0f6cd55 --- /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 0000000000..115832bfd5 --- /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 0000000000..524db76e0d --- /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 0000000000..967182f45f --- /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 0000000000..f3b77cee0c --- /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 0000000000..aef3cb95d1 --- /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 0000000000..79c628426d --- /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 0000000000..e34e658289 --- /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 0000000000..42125bc398 --- /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 0000000000..be77211196 --- /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 0000000000..fba4a31aa6 --- /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 0000000000..c509a2c8b5 --- /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 0000000000..6fa6eb789a --- /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 0000000000..ddcd02a65e --- /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 0000000000..51a68064bd --- /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 0000000000..66cad29125 --- /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 0000000000..f69a9628ee --- /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 0000000000..549cd7a4e1 --- /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 0000000000..8eec762151 --- /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 0000000000..db0e430e10 --- /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 0000000000..6e747f5d68 --- /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 0000000000..0f2c116811 --- /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 0000000000..531ddc97e9 --- /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 0000000000..342928a9dc --- /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 0000000000..be7bd97541 --- /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 0000000000..d7a31268b7 --- /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 0000000000..97accf2bd9 --- /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 0000000000..704035285e --- /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 0000000000..9a48b429bb --- /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 0000000000..3899cfe391 --- /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 0000000000..9b94b08b11 --- /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 0000000000..a4817d4972 --- /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 0000000000..d1bad5cf4d --- /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 0000000000..3e5025b90f --- /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 0000000000..5ba53cca65 --- /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 0000000000..26bdf603e4 --- /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 0000000000..9ede06fc9a --- /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 0000000000..ddc4dfb426 --- /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 0000000000..dde1c1f7f6 --- /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 0000000000..771e699ed0 --- /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 0000000000..c1d5a10525 --- /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 0000000000..27caa321be --- /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 0000000000..f3dbca1713 --- /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 0000000000..a28eb47162 --- /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 0000000000..ba29489277 --- /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 0000000000..2d84a3373c --- /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 0000000000..cdd72e1987 --- /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 0000000000..00c50f2c23 --- /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 0000000000..42339388ef --- /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 0000000000..a26a4010e6 --- /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 0000000000..3271731143 --- /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 0000000000..7680ba247d --- /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 0000000000..8c7b3049fc --- /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 0000000000..002c4f8cea --- /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 0000000000..28bf377abc --- /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 0000000000..e19935b5fc --- /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 0000000000..05465dc16f --- /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 0000000000..5762a1c26f --- /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 0000000000..2fdcd7f4bb --- /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 0000000000..455835f55e --- /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 0000000000..3691043d93 --- /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 0000000000..61a147a2a4 --- /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 0000000000..b3287611c5 --- /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 0000000000..83245f53e8 --- /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 0000000000..032c1c6c4d --- /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 0000000000..039d884c89 --- /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 0000000000..7e9a371f85 --- /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 0000000000..7c3e3c14eb --- /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 0000000000..c93b5d5f48 --- /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 0000000000..932f1075ad --- /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 0000000000..01d1ed511b --- /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 0000000000..3de48d8ca2 --- /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 0000000000..ecf2bdf3e8 --- /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 0000000000..1f2a1f2df6 --- /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 0000000000..9f18e8edca --- /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 0000000000..3c220970d0 --- /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 0000000000..e4129b123a --- /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 0000000000..03aa23c832 --- /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 0000000000..655a303496 --- /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 0000000000..11929d8084 --- /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 0000000000..12bdc2ed93 --- /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 0000000000..895ce1fc83 --- /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 0000000000..a0de45660d --- /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 0000000000..2e83ac20cf --- /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 0000000000..b57b23a134 --- /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 0000000000..ac6bd8cd6f --- /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 0000000000..06822ada36 --- /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 0000000000..54e48e387a --- /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 0000000000..15b774819a --- /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 0000000000..071df4cd01 --- /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 0000000000..ef8994d97c --- /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 0000000000..a0a31930ba --- /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 0000000000..97daf4dfa5 --- /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 0000000000..5a3583288c --- /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 0000000000..7b9ce0938a --- /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 0000000000..3b519f6771 --- /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 0000000000..4a98222ad5 --- /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 0000000000..ed157d4ad1 --- /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 0000000000..e3aba242c2 --- /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 0000000000..bbbc1a9786 --- /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 0000000000..7282ef4512 --- /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 0000000000..12fb84643c --- /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 0000000000..e5ca0aed8c --- /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 0000000000..5299a8f66a --- /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 0000000000..78d201b56e --- /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 0000000000..32d575818a --- /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 0000000000..fc6b85649e --- /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 0000000000..51300c6151 --- /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 0000000000..22565f7f05 --- /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 0000000000..85f9a586a6 --- /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 0000000000..a6883fa9ef --- /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 0000000000..ce9cdd9933 --- /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 0000000000..5db25a3ce4 --- /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 0000000000..643a048cd4 --- /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 0000000000..d67e88487c --- /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 0000000000..ba6fc04e80 --- /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 0000000000..03af38c6a4 --- /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 0000000000..27f629a095 --- /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 0000000000..95eac27b7b --- /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 0000000000..4aac94849d --- /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 0000000000..57603ad10d --- /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 0000000000..a16cf79f5e --- /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 0000000000..182cfd3ed7 --- /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 0000000000..b886f0e55a --- /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 0000000000..d60a3cd815 --- /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 0000000000..0b224887ee --- /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 0000000000..63d2edef99 --- /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 0000000000..24bb6272a6 --- /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 0000000000..147aa10362 --- /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 0000000000..54645d3ee7 --- /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 0000000000..818ad7cb62 --- /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 0000000000..7818d0206a --- /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 0000000000..ab56af2472 --- /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 0000000000..a744cecca2 --- /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 0000000000..d2f00b9348 --- /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 0000000000..7e258ef5a9 --- /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 0000000000..d4ff6f4d67 --- /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 0000000000..782eeaf577 --- /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 0000000000..d6f38a504e --- /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 0000000000..0f2be3b7b4 --- /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 0000000000..aca2fe6cc3 --- /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 0000000000..5ed0316524 --- /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 0000000000..c6ce2133c1 --- /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 0000000000..588f9968f9 --- /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 0000000000..e459275d0b --- /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 0000000000..c401909b8d --- /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 0000000000..df225ba79d --- /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 0000000000..6e4e5e2a9f --- /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 0000000000..e6324e16f1 --- /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 0000000000..eb168bdae6 --- /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 0000000000..c37e135663 --- /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 0000000000..7cdc7844b1 --- /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 0000000000..3ead5bf7f5 --- /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 0000000000..b4ab389c0c --- /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 0000000000..68aaebf793 --- /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 0000000000..cb46c5dac7 --- /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 0000000000..5a245f81f9 --- /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 0000000000..6d93c444ea --- /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 0000000000..505a67f781 --- /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 0000000000..44f3ced76a --- /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 0000000000..791926a579 --- /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 0000000000..4ef72a5bae --- /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 0000000000..b287a2b545 --- /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 0000000000..7e4a2a6573 --- /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 0000000000..9dd6371034 --- /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 0000000000..68abe262fe --- /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 0000000000..1dbe2d8127 --- /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 0000000000..d89b6c5f89 --- /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 0000000000..84e2ac307b --- /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 0000000000..46f5b50b8f --- /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 0000000000..1527306a48 --- /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 0000000000..16bcafbcdd --- /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 0000000000..3b2f536f60 --- /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 0000000000..23f05f5faa --- /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 0000000000..33b9804852 --- /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 0000000000..6f2e84e977 --- /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 0000000000..96a324dca8 --- /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 0000000000..1edad91424 --- /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 0000000000..c6d84a85b1 --- /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 0000000000..52104c588b --- /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 0000000000..7bdf030f3a --- /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 0000000000..90b2a0a0d8 --- /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 0000000000..e19932b768 --- /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 0000000000..bda70e0222 --- /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 0000000000..ba5088c3b0 --- /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 0000000000..d091a5b294 --- /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 0000000000..b72e31f7e6 --- /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 0000000000..1e53ff86dc --- /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 0000000000..96165a00c2 --- /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 0000000000..ce4f5ecf6e --- /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 0000000000..61dfb1bf3c --- /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 0000000000..1478dc9140 --- /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 0000000000..76c1c9c940 --- /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 0000000000..007c63285c --- /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 0000000000..610628052d --- /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 0000000000..88d7541fd1 --- /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 0000000000..3c2b4649e9 --- /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 0000000000..aa83137cff --- /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 0000000000..88cd347a52 --- /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 0000000000..e959ec8ccd --- /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 0000000000..4eb4a1fd06 --- /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 0000000000..15a95837dd --- /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 0000000000..640441deb9 --- /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 0000000000..5b8baa5779 --- /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 0000000000..600c5639d1 --- /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 0000000000..f02a42bdaa --- /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 0000000000..fc093a6ef8 --- /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 0000000000..41175f6ed7 --- /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 0000000000..a27d72b51c --- /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 0000000000..46c9211021 --- /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 0000000000..2b9323ebec --- /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 0000000000..3706347153 --- /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 0000000000..09118fc0a1 --- /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 0000000000..7c55cb2c03 --- /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 0000000000..3fab45c20d --- /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 0000000000..db61507b77 --- /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 0000000000..6654a77b36 --- /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 0000000000..8b588fc9f5 --- /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 0000000000..cc39dc3ad2 --- /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 0000000000..f05d3515ad --- /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 0000000000..f99bf1eb8b --- /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 0000000000..f92a8aa5dc --- /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 0000000000..fdc9a1b965 --- /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 0000000000..0d41591373 --- /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 0000000000..ca22e8024c --- /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 0000000000..b40a2303ad --- /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 0000000000..0107810a38 --- /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 0000000000..493898d369 --- /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 0000000000..93358948bf --- /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 0000000000..bc5909d5f4 --- /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 0000000000..4ed0035aa0 --- /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 0000000000..b6597de754 --- /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 0000000000..8ccde425f1 --- /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 0000000000..507f370b93 --- /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 0000000000..4de40e9500 --- /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 0000000000..c31e76a1a3 --- /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 0000000000..126d6a4277 --- /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 0000000000..088e695319 --- /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 0000000000..3f8e7e5ea4 --- /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 0000000000..337d169b95 --- /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 0000000000..4e2f95bb88 --- /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 0000000000..9e40fae7e8 --- /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 0000000000..fe1b1a5724 --- /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 0000000000..e529e0b4a5 --- /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 0000000000..5c8a4eba81 --- /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 0000000000..c205f5613b --- /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 0000000000..e2a43c6022 --- /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 0000000000..135a68747f --- /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 0000000000..ea5ed43f60 --- /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 0000000000..da43227fef --- /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 0000000000..f68b1afa53 --- /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 0000000000..18f02d5b61 --- /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 0000000000..748433a809 --- /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 0000000000..703f113279 --- /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 0000000000..5e522a4e3a --- /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 0000000000..8866b5a924 --- /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 0000000000..2d7a6907a9 --- /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 0000000000..3096c82fb7 --- /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 0000000000..7f26819d12 --- /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 0000000000..e7a12ab687 --- /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 0000000000..432fdd2633 --- /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 0000000000..ef773bf5c8 --- /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 0000000000..68b5022afe --- /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 0000000000..4a15214ac1 --- /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 0000000000..a206d2777c --- /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 0000000000..23307dc2b2 --- /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 0000000000..6c51d88a4a --- /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 0000000000..6f544bee9a --- /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 0000000000..1f1a155fd2 --- /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 0000000000..b18f62652e --- /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 0000000000..f55936106a --- /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 0000000000..05dcc052cf --- /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 0000000000..38bc81b502 --- /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 0000000000..2a6338fef5 --- /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 0000000000..af4f96d008 --- /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 0000000000..eab9da5d0b --- /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 0000000000..cb3083a021 --- /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 0000000000..f2ff80f1b5 --- /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 0000000000..73daa36c63 --- /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 0000000000..f3221b29b5 --- /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 0000000000..c103fcb1fe --- /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 0000000000..ad487e7167 --- /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 0000000000..02f873952c --- /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 0000000000..46590d78e2 --- /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 0000000000..878f0ac186 --- /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 0000000000..3b5de1b5d1 --- /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 0000000000..8ccbd06013 --- /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 0000000000..e15534ee31 --- /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 0000000000..6b33b6c336 --- /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 0000000000..be039038b8 --- /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 0000000000..ca3c9578b0 --- /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 0000000000..715f943fbc --- /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 0000000000..2b14b84753 --- /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 0000000000..dc4a63e7c0 --- /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 0000000000..9805d3e62f --- /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 0000000000..6f1bf14c34 --- /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 0000000000..99721355dd --- /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 0000000000..234cfdc6ea --- /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 0000000000..3f691e2b2c --- /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 0000000000..38754d83cd --- /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 0000000000..139698bcd8 --- /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 0000000000..c6ba6d5530 --- /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 0000000000..7510cbc1ee --- /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 0000000000..061875c2b6 --- /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 0000000000..4b9329eb3f --- /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 0000000000..ea743f3ad8 --- /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 0000000000..b524f18105 --- /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 0000000000..cc952332c5 --- /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 0000000000..9d46baa78a --- /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 0000000000..d54a09b9c3 --- /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 0000000000..8c9d43b567 --- /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 0000000000..6936f6a995 --- /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 0000000000..eeea221a1f --- /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 0000000000..b29d0359f3 --- /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 0000000000..5455dbaadd --- /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 0000000000..95c790d377 --- /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 0000000000..25f5b6dbaf --- /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 0000000000..4a152b1b5e --- /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 0000000000..1ce4e30984 --- /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 0000000000..fba471b5bb --- /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 0000000000..250ba00a77 --- /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 0000000000..757325f7e8 --- /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 0000000000..c54cb6657c --- /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 0000000000..9e94845c89 --- /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 0000000000..13ace09c6c --- /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 0000000000..e1da10040c --- /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 0000000000..afe040a06f --- /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 0000000000..72cf53f248 --- /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 0000000000..5988d4ebb5 --- /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 0000000000..b42baa5c86 --- /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 0000000000..1015b48ab6 --- /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 0000000000..f46c04d30e --- /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 0000000000..4508e3ebfa --- /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 0000000000..4de58cb0d4 --- /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 0000000000..465aa5aa22 --- /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 0000000000..a48928d21b --- /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 0000000000..b0ff35cf40 --- /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 0000000000..8734d978cb --- /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 0000000000..374b825c6a --- /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 0000000000..82d6ba6a9e --- /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 0000000000..0e33275c1a --- /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 0000000000..8f3d967b78 --- /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 0000000000..80980ca7dd --- /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 0000000000..10bc0cafbc --- /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 0000000000..c35b67c089 --- /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 0000000000..abe3ac0601 --- /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 0000000000..5eb53145dd --- /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 0000000000..3e43e7fd6c --- /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 0000000000..994621009f --- /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 0000000000..412e75f498 --- /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 0000000000..814cdd6bf0 --- /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 0000000000..523d37134b --- /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 0000000000..abfada0783 --- /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 0000000000..432b24ae8a --- /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 0000000000..2c3fbf946a --- /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 0000000000..4ead77e046 --- /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 0000000000..4c9d05d7b4 --- /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 0000000000..6c912a7248 --- /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 0000000000..e42f2d6712 --- /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 0000000000..8b0d0092c0 --- /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 0000000000..8e7c181ba6 --- /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 0000000000..f45f4970d3 --- /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 0000000000..c90ed7fa90 --- /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 0000000000..c9362e00ae --- /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 0000000000..63502e664c --- /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 0000000000..4ad1bc86bf --- /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 0000000000..8bac181358 --- /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 0000000000..faf363da35 --- /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 0000000000..7dee75867d --- /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 0000000000..f0cc85867a --- /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 0000000000..f24cd6a45a --- /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 0000000000..720d06899e --- /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 0000000000..6d8fc87fc1 --- /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 0000000000..7eda9af97d --- /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 0000000000..a7a8132d2f --- /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 0000000000..34ae677bcf --- /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 0000000000..0d8fcd974d --- /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 0000000000..f7f924cc45 --- /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 0000000000..03cbf4f9d1 --- /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 0000000000..59098ef7fe --- /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 0000000000..73178fdea3 --- /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 0000000000..97c5812462 --- /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 0000000000..05162c95f3 --- /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 0000000000..3cd2e3abd1 --- /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 0000000000..c0ca7db89f --- /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 0000000000..628c464b87 --- /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 0000000000..59392c96fe --- /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 0000000000..ecf6db7db2 --- /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 0000000000..ec9d76d64a --- /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 0000000000..fc276a7f21 --- /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 0000000000..d6cea03979 --- /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 0000000000..24288fb098 --- /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 0000000000..6bb3b740a4 --- /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 0000000000..95b61a0770 --- /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 0000000000..7102bab437 --- /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 0000000000..336e7227eb --- /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 0000000000..134bd4dce4 --- /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 0000000000..77539b13b2 --- /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 0000000000..38bee80656 --- /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 0000000000..4a08cb9841 --- /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 0000000000..6b00470792 --- /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 0000000000..c5fbce71a8 --- /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 0000000000..ff1c191a3a --- /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 0000000000..c18085afea --- /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 0000000000..09ae15cdbd --- /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 0000000000..8824f6d104 --- /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 0000000000..e972c6b46d --- /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 0000000000..fab2a1f267 --- /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 0000000000..3d727947d9 --- /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 0000000000..04681a0f81 --- /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 0000000000..74670d3a2e --- /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 0000000000..209eeeee56 --- /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 0000000000..2ec362ddc8 --- /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 0000000000..ac01edfbdb --- /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 0000000000..3a30dd83bc --- /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 0000000000..cbe6d35090 --- /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 0000000000..33c28444ed --- /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 0000000000..df8268b64f --- /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 0000000000..62da8a7d2b --- /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 0000000000..6986206787 --- /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 0000000000..37ea075bf4 --- /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 0000000000..e5fb8a07d8 --- /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 0000000000..857fbc5695 --- /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 0000000000..580a93af10 --- /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 0000000000..5588c1a320 --- /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 0000000000..517040b079 --- /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 0000000000..da906bde69 --- /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 0000000000..5a06090fa5 --- /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 0000000000..65c298b09e --- /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 0000000000..f9ee5d3f74 --- /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 0000000000..53dae00f18 --- /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 0000000000..f25ba59749 --- /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 0000000000..4d6d6e2381 --- /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 0000000000..36acabb2e8 --- /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 0000000000..5d677903e5 --- /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 0000000000..d12383be9d --- /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 0000000000..855fcf677c --- /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 0000000000..ff447cee45 --- /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 0000000000..36cf6d9f81 --- /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 0000000000..05073bd86d --- /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 0000000000..9dd501baf2 --- /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 0000000000..1d61b3d3cc --- /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 0000000000..7a87f50b50 --- /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 0000000000..721ffe5935 --- /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 0000000000..a3a934762d --- /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 0000000000..cd77f012ff --- /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 0000000000..4cc90b355a --- /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 0000000000..4a389f6a59 --- /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 0000000000..cb05a213a5 --- /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 0000000000..e21aebf4ca --- /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 0000000000..fe10370e4c --- /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 0000000000..073ff77af5 --- /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 0000000000..bd792b90f1 --- /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 0000000000..44dc8d5e4d --- /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 0000000000..3aa83b1fe8 --- /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 0000000000..1c356929ee --- /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 0000000000..c86a07a84b --- /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 0000000000..e6d9b24679 --- /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 0000000000..90d9b2011e --- /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 0000000000..5828ddb4ae --- /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 0000000000..c2c5efa453 --- /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 0000000000..b302ec51cd --- /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 0000000000..bb75c03c4d --- /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 0000000000..bfbc28a261 --- /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 0000000000..5e8d8d31c3 --- /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 0000000000..c0d3623ae9 --- /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 0000000000..5b0803f8e6 --- /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 0000000000..39fb1ff01e --- /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 0000000000..7aa1d7fdbb --- /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 0000000000..047d9563bb --- /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 0000000000..a063786191 --- /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 0000000000..889df94b47 --- /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 0000000000..3624677be5 --- /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 0000000000..d0768e613a --- /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 0000000000..b6021b77eb --- /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 0000000000..33c692b6ef --- /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 0000000000..c9be1ff3a6 --- /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 0000000000..fe62e92987 --- /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 0000000000..4af796ad55 --- /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 0000000000..09d3dbb2c6 --- /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 0000000000..d4e166512a --- /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 0000000000..73e4f6025c --- /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 0000000000..9320f0051c --- /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 0000000000..db05dbb4db --- /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 0000000000..9482bfeb5a --- /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 0000000000..44b368a05b --- /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 0000000000..db02b9cc2d --- /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 0000000000..d2f6cec44f --- /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 0000000000..78d1bfaacc --- /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 0000000000..f28d681ad0 --- /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 0000000000..b6d7038ba9 --- /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 0000000000..a27cebf56d --- /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 0000000000..4f039f774f --- /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 0000000000..50cbcaa39e --- /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 0000000000..a71aa08daa --- /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 0000000000..76999839a0 --- /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 0000000000..f6ae534141 --- /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 0000000000..3504940ff6 --- /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 0000000000..fd9dd81275 --- /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 0000000000..497d0df5f0 --- /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 0000000000..7a5bc8fb48 --- /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 0000000000..fcdf5d48f5 --- /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 0000000000..676b88ead3 --- /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 0000000000..830b334717 --- /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 0000000000..9237fc54ab --- /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 0000000000..7212bc60a9 --- /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 0000000000..30447826eb --- /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 0000000000..c3a96f74d9 --- /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 0000000000..d6eb20ef03 --- /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 0000000000..a1fef9276c --- /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 0000000000..80b4523ef5 --- /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 0000000000..bb0a2a3305 --- /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 0000000000..a0ec47dc40 --- /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 0000000000..b8753c1a48 --- /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 0000000000..897a7db019 --- /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 0000000000..ffa7f533f3 --- /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 0000000000..3d020e029e --- /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 0000000000..47cd9bb779 --- /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 0000000000..b0ee8479c9 --- /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 0000000000..db2fb8e6a5 --- /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 0000000000..a14089b088 --- /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 0000000000..866c94648c --- /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 0000000000..58372193d2 --- /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 0000000000..1794900504 --- /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 0000000000..583635af1b --- /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 0000000000..5c3cf443b5 --- /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 0000000000..de59f05bd0 --- /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 0000000000..d97fc74c38 --- /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 0000000000..1c71708895 --- /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 0000000000..afaaf8030b --- /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 0000000000..c9030ebac9 --- /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 0000000000..68ac9a5863 --- /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 0000000000..84225b2c7a --- /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 0000000000..856eb1aae7 --- /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 0000000000..eb3f8ded5e --- /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 0000000000..624f622a36 --- /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 0000000000..7da6767fd7 --- /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 0000000000..21ddb2e287 --- /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 0000000000..956f5fb5d1 --- /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 0000000000..2d13682d71 --- /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 0000000000..ae9572830b --- /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 0000000000..597b13c415 --- /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 0000000000..5fdf7c1e75 --- /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 0000000000..a4a869c256 --- /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 0000000000..241a600fab --- /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 0000000000..dc8a40c3b2 --- /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 0000000000..0bc9542e66 --- /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 0000000000..d862f07fad --- /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 0000000000..d386a7f4a8 --- /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 0000000000..9890700e03 --- /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 0000000000..c92a9fb9c7 --- /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 0000000000..4f65546d1b --- /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 0000000000..aee20d3312 --- /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 0000000000..7930695b67 --- /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 0000000000..cd8dba9bfa --- /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 0000000000..ad7b7edf7e --- /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 0000000000..51ff02d916 --- /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 0000000000..c57495ab2e --- /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 0000000000..c3123dbe86 --- /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 0000000000..461283f4ed --- /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 0000000000..6c4019853e --- /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 0000000000..16c1f77b79 --- /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 0000000000..70cc3eb195 --- /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 0000000000..1f2bf8dd5e --- /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 0000000000..dfad4d607b --- /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 0000000000..1ad19fa5ac --- /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 0000000000..862ee224eb --- /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 0000000000..0bdcb53014 --- /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 0000000000..06cc9ce1a6 --- /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 0000000000..cf1fa10b61 --- /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 0000000000..5fa9d02879 --- /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 0000000000..b444063aec --- /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 0000000000..b5931bc65d --- /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 0000000000..70ad5c9af8 --- /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 0000000000..2573c90257 --- /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 0000000000..d601974b91 --- /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 0000000000..1c2155acad --- /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 0000000000..244a2f83b9 --- /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 0000000000..aaec0952e2 --- /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 0000000000..a09ee42ede --- /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 0000000000..cea357a348 --- /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 0000000000..756230f73e --- /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 0000000000..746c962ddf --- /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 0000000000..5da222f467 --- /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 0000000000..4f255c96e5 --- /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 0000000000..ce08860da1 --- /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 0000000000..0ea3103d3c --- /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 0000000000..618301fe81 --- /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 0000000000..cfad01f35f --- /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 0000000000..e122317ffe --- /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 0000000000..0dedd58eff --- /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 0000000000..b1822987de --- /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 0000000000..1274b34c12 --- /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 0000000000..442e7e321a --- /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 0000000000..8d3ef3ecac --- /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 0000000000..1a9f709388 --- /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 0000000000..7f4708a92f --- /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 0000000000..ae4851e96c --- /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 0000000000..e25db98d72 --- /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 0000000000..dd480bbbaf --- /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 0000000000..48663d8748 --- /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 0000000000..323670b515 --- /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 0000000000..8446a3fbf5 --- /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 0000000000..a006e6e9ea --- /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 0000000000..7c72fe89e0 --- /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 0000000000..4d9f64bf23 --- /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 0000000000..529c4e9556 --- /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 0000000000..99cf886aa0 --- /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 0000000000..d8e04b1a16 --- /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 0000000000..85e145df54 --- /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 0000000000..faa2b3d155 --- /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 0000000000..2fe81a7524 --- /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 0000000000..9e3b73b309 --- /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 0000000000..404de597d4 --- /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 0000000000..9edfc4a9b0 --- /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 0000000000..9e4423f74f --- /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 0000000000..350375dea9 --- /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 0000000000..09993347e5 --- /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 0000000000..35eb106eef --- /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 0000000000..fe5e7f1429 --- /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 0000000000..607c6cad0b --- /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 0000000000..e47bea3c3c --- /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 0000000000..6da0879669 --- /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 0000000000..63ffa80e65 --- /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 0000000000..c29edf0460 --- /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 0000000000..e47f62b8be --- /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 0000000000..a70e851d6b --- /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 0000000000..a7927e7edf --- /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 0000000000..f41c7ae9cc --- /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 0000000000..c629fadc99 --- /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 0000000000..9617af149d --- /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 0000000000..4f11521acf --- /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 0000000000..51772b04d7 --- /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 0000000000..a094772c55 --- /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 0000000000..cd6d7a6937 --- /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 0000000000..9bf9c36251 --- /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 0000000000..8414939608 --- /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 0000000000..f359d0efec --- /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 0000000000..1401a13747 --- /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 0000000000..02570300f2 --- /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 0000000000..dcda5bb6e8 --- /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 0000000000..34853bd8ba --- /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 0000000000..9525b15f3d --- /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 0000000000..6e5154f1a6 --- /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 0000000000..764b99c260 --- /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 0000000000..f2fc43d74e --- /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 0000000000..98de049a7d --- /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 0000000000..98c32908fa --- /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 0000000000..04182ca35b --- /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 0000000000..cadf1f9964 --- /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 0000000000..f577156d4a --- /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 0000000000..8e66e98630 --- /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 0000000000..ee0d2dfe06 --- /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 0000000000..51ad380366 --- /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 0000000000..98f8b9d870 --- /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 0000000000..43df49a3a5 --- /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 0000000000..a0f9f36fcd --- /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 0000000000..465ccfe1d7 --- /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 0000000000..a27e178a15 --- /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 0000000000..16d0b24c89 --- /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 0000000000..03d129d1ee --- /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 0000000000..f6c47ac11f --- /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 0000000000..029672841d --- /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 0000000000..a7704c383d --- /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 0000000000..db1c920d71 --- /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 0000000000..d917f61a45 --- /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 0000000000..66348dede9 --- /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 0000000000..dcfbc762c0 --- /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 0000000000..0c0c205069 --- /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 0000000000..723633b685 --- /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 0000000000..4a3c49d028 --- /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 0000000000..6facf4e824 --- /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 0000000000..a7cce88442 --- /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 0000000000..f2fb6aa7be --- /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 0000000000..90d58140ac --- /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 0000000000..08b13ee961 --- /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 0000000000..8da84cf707 --- /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 0000000000..2642882693 --- /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 0000000000..ff53ba39c7 --- /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 0000000000..1fbb9c31db --- /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 0000000000..7dd21a08b7 --- /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 0000000000..8944d53f2d --- /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 0000000000..88308364f1 --- /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 0000000000..f6b05cbc89 --- /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 0000000000..df3600ef8e --- /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 0000000000..214da14629 --- /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 0000000000..7a8ff5fd42 --- /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 0000000000..798a28cacf --- /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 0000000000..cad968d056 --- /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 0000000000..4483a41f25 --- /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 0000000000..4bd79117c6 --- /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 0000000000..38167a9c88 --- /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 0000000000..bf00a9bc14 --- /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 0000000000..975581e22c --- /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 0000000000..6d5b160941 --- /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 0000000000..19fbf97a36 --- /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 0000000000..7a58c7a516 --- /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 0000000000..4428e2d33c --- /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 0000000000..b027e15f41 --- /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 0000000000..6a6141239f --- /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 0000000000..a2f823b5e1 --- /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 0000000000..fcfa1c2677 --- /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 0000000000..50676b93ab --- /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 0000000000..0f65435bd0 --- /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 0000000000..c77a892bc5 --- /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 0000000000..a22443a331 --- /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 0000000000..23017e1896 --- /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 0000000000..bac7034581 --- /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 0000000000..66db11da2c --- /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 0000000000..fb7ef7942e --- /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 0000000000..5752134c46 --- /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 0000000000..ee724037b7 --- /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 0000000000..c7f6377a35 --- /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 0000000000..688fac4fd2 --- /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 0000000000..a90a2cf6b0 --- /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 0000000000..25742449b6 --- /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 0000000000..f402c1a69f --- /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 0000000000..2461fadf3b --- /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 0000000000..b382aa9199 --- /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 0000000000..9401cbf066 --- /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 0000000000..3cd9059897 --- /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 0000000000..fc03e6871e --- /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 0000000000..87d6d8f2b1 --- /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 0000000000..765675f1ee --- /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 0000000000..b029599978 --- /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 0000000000..34b611795b --- /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 0000000000..bf4e10f9c9 --- /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 0000000000..beafbde27e --- /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 0000000000..5081ab9bb7 --- /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 0000000000..289539a2c8 --- /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 0000000000..b36b0b6a41 --- /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 0000000000..eba998e242 --- /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 0000000000..0c775296b6 --- /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 0000000000..39b6da77b5 --- /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 0000000000..9885d85602 --- /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 0000000000..4b2978e3a2 --- /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 0000000000..a5db24d870 --- /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 0000000000..f68fe0bbd5 --- /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 0000000000..b867a77901 --- /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 0000000000..97d735fd5e --- /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 0000000000..07e1e3f810 --- /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 0000000000..91bc92a2f1 --- /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 0000000000..798a891cc5 --- /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 0000000000..3d8dc7142e --- /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 0000000000..8145133c76 --- /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 0000000000..33c96aecef --- /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 0000000000..97632f33ff --- /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 0000000000..9823386daa --- /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 0000000000..0807ad29c7 --- /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 0000000000..7050e64107 --- /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 0000000000..840d152bb4 --- /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 0000000000..f62e4aaa7a --- /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 0000000000..e5e48ea43a --- /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 0000000000..94525c3046 --- /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 0000000000..5e2a96344d --- /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 0000000000..610f2d8200 --- /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 0000000000..0494dd900e --- /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 0000000000..05a18b8838 --- /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 0000000000..649a800c93 --- /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 0000000000..c5fcb8f337 --- /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 0000000000..8016cc505c --- /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 0000000000..252750eb39 --- /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 0000000000..49b2163003 --- /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 0000000000..59dfe2fc71 --- /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 0000000000..068c222b2a --- /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 0000000000..b4073e0b0b --- /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 0000000000..04b3d6e760 --- /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 0000000000..19fc2a5786 --- /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 0000000000..1f47495a43 --- /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 0000000000..4ac2cd11a8 --- /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 0000000000..eee1e4a8be --- /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 0000000000..0fe2a3ea97 --- /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 0000000000..37d80fbcdc --- /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 0000000000..c04a6bc093 --- /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 0000000000..0a2c0f94e5 --- /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 0000000000..c3530753d9 --- /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 0000000000..fa2059b28e --- /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 0000000000..cf2aff41c5 --- /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 0000000000..71dcf5f680 --- /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 0000000000..39a4210f5c --- /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 0000000000..728a5278f6 --- /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 0000000000..4b943986e0 --- /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 0000000000..853aa960f6 --- /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 0000000000..07c7f833c8 --- /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 0000000000..fc0a6efada --- /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 0000000000..e2a08f4364 --- /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 0000000000..fcd3d72d75 --- /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 0000000000..3176f5c9ae --- /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 0000000000..ae4c7abbe6 --- /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 0000000000..9ab5d360f2 --- /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 0000000000..80bd9189e6 --- /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 0000000000..d297c53a25 --- /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 0000000000..4a6e8bfe14 --- /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 0000000000..000b82f2fa --- /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 0000000000..866ef1d399 --- /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 0000000000..dc0699fce4 --- /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 0000000000..6d73276297 --- /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 0000000000..f4a7287cde --- /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 0000000000..197cce5690 --- /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 0000000000..5110d4b761 --- /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 0000000000..1257f3749b --- /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 0000000000..ec3bdc5441 --- /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 0000000000..d478426187 --- /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 0000000000..690e11c5fc --- /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 0000000000..66a7d539bd --- /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 0000000000..c39206d4bb --- /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 0000000000..d0bfe9301f --- /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 0000000000..fce061ec02 --- /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 0000000000..415810a8ac --- /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 0000000000..f6bac02719 --- /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 0000000000..a17572fde9 --- /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 0000000000..397b866155 --- /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 0000000000..d858de2ce0 --- /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 0000000000..36673cacc4 --- /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 0000000000..ed0929008b --- /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 0000000000..98f55c0493 --- /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 0000000000..42783e5998 --- /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 0000000000..8c2641f2a5 --- /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 0000000000..4f0925dab7 --- /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 0000000000..15c0dde8d8 --- /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 0000000000..80f5612345 --- /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 0000000000..b828c28072 --- /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 0000000000..03ca23886f --- /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 0000000000..8f000f3ede --- /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 0000000000..2776561ffb --- /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 0000000000..b055249f05 --- /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 0000000000..01206240d6 --- /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 0000000000..453f900d60 --- /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 0000000000..cc064d5786 --- /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 0000000000..089252f3e2 --- /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 0000000000..019c8f0a38 --- /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 0000000000..0dafe027bf --- /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 0000000000..fe2b71ba7d --- /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 0000000000..3b02f79b1e --- /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 0000000000..30671b4fc6 --- /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 0000000000..22a94cc649 --- /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 0000000000..b055d221fa --- /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 0000000000..605f940d23 --- /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 0000000000..d4a26f8bcb --- /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 0000000000..83e02ed867 --- /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 0000000000..a050370546 --- /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 0000000000..764646e15e --- /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 0000000000..1056efe88f --- /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 0000000000..e8d0da7fed --- /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 0000000000..309443807f --- /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 0000000000..ca324cd705 --- /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 0000000000..a5d6de9043 --- /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 0000000000..da99b8d1e2 --- /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 0000000000..4f24b96342 --- /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 0000000000..01ff55d8f3 --- /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 0000000000..a78c5b6dc3 --- /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 0000000000..376eec2a5d --- /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 0000000000..dfe9ab374f --- /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 0000000000..16bbb68aad --- /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 0000000000..ea22923ffd --- /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 0000000000..a9cd92b237 --- /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 0000000000..f84fdcbb07 --- /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 0000000000..888fa793b5 --- /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 0000000000..131444feaa --- /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 0000000000..be397e5f71 --- /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 0000000000..7f394a792e --- /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 0000000000..781d03e115 --- /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 0000000000..6fe42234c9 --- /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 0000000000..a7c61aa938 --- /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 0000000000..4dde9fbd5d --- /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 0000000000..40557b2f29 --- /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 0000000000..6bc910eef9 --- /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 0000000000..4fd7b074b9 --- /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 0000000000..900705cae3 --- /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 0000000000..90255cd796 --- /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 0000000000..33935a1ff6 --- /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 0000000000..edd241bca8 --- /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 0000000000..39e938c48f --- /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 0000000000..f054bf60af --- /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 0000000000..407b10f7af --- /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 0000000000..a83b5297a0 --- /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 0000000000..d54d29aa03 --- /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 0000000000..ea7a08dd9a --- /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 0000000000..d1d3389d75 --- /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 0000000000..48d1e91afa --- /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 0000000000..bdf27a6bf3 --- /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 0000000000..19494f47d9 --- /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 0000000000..b5a8251030 --- /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 0000000000..818d38e20a --- /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 0000000000..30e565b664 --- /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 0000000000..3ff2c16b9d --- /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 0000000000..186b8abd3e --- /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 0000000000..2cc6e1f305 --- /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 0000000000..1c11e52cea --- /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 0000000000..1ef75e88d1 --- /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 0000000000..be28366a30 --- /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 0000000000..488ca5cde0 --- /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 0000000000..8a5a7f3c1f --- /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 0000000000..0175817155 --- /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 0000000000..4dc4609ad4 --- /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 0000000000..043dea1084 --- /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 0000000000..02e9d4082b --- /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 0000000000..5677d8ca25 --- /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 0000000000..300b4ce847 --- /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 0000000000..6eecf98ccb --- /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 0000000000..b8303c754b --- /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 0000000000..8770a37f0e --- /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 0000000000..df03308b73 --- /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 0000000000..632620aa4f --- /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 0000000000..629d5091b0 --- /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 0000000000..466561b138 --- /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 0000000000..98fb1c6771 --- /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 0000000000..d0c54be14f --- /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 0000000000..5a249edc73 --- /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 0000000000..75e8f1fe69 --- /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 0000000000..8445b42b34 --- /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 0000000000..67b1c8752d --- /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 0000000000..d79104eb9b --- /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 0000000000..47552d4b08 --- /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 0000000000..abee3c725e --- /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 0000000000..1ad3d3cbbc --- /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 0000000000..08fc89734d --- /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 0000000000..f9e57df03f --- /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 0000000000..a37ca5e1db --- /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 0000000000..e49c2817e8 --- /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 0000000000..643e3c477b --- /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 0000000000..97b077c4d3 --- /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 0000000000..3debbd68ec --- /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 0000000000..aa4606f82a --- /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 0000000000..29f9bc9258 --- /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 0000000000..f308095b3a --- /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 0000000000..d10cb7920e --- /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 0000000000..1780c590ca --- /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 0000000000..cb6f5ca280 --- /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 0000000000..6cd3f662d2 --- /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 0000000000..a11369fa95 --- /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 0000000000..a999f1c0ea --- /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 0000000000..0fd5664b4d --- /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 0000000000..c74e7ad3fe --- /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 0000000000..a5b458f160 --- /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 0000000000..e0862a5ad1 --- /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 0000000000..863149a655 --- /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 0000000000..9291b49afc --- /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 0000000000..784f7a5b85 --- /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 0000000000..7997706fc8 --- /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 0000000000..f5b3d2cbb1 --- /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 0000000000..57be3a23dc --- /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 0000000000..71aea21922 --- /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 0000000000..eace648a9b --- /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 0000000000..d93b9aed91 --- /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 0000000000..f0f4c351f0 --- /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 0000000000..9f21ae8531 --- /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 0000000000..7f86542629 --- /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 0000000000..b288013633 --- /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 0000000000..e72a3c97bd --- /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 0000000000..88ff9e8acb --- /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 0000000000..de1b76c953 --- /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 0000000000..40f7c54d66 --- /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 0000000000..4a20f89e15 --- /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 0000000000..5317593842 --- /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 0000000000..dfb9f83d8e --- /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 0000000000..6bc9578fbf --- /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 0000000000..cfd229264f --- /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 0000000000..5bb89a216b --- /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 0000000000..3d2cd700e7 --- /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 0000000000..c97fbf051c --- /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 0000000000..8fe50c6071 --- /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 0000000000..4c49fb6aa4 --- /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 0000000000..970cf785bc --- /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 0000000000..04a54cb75e --- /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 0000000000..bc428be5bc --- /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 0000000000..4273262bf4 --- /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 0000000000..c752869d4d --- /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 0000000000..b5b5301bf6 --- /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 0000000000..cb45fae93b --- /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 0000000000..c74a3404af --- /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 0000000000..a94d745a4b --- /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 0000000000..612f32aade --- /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 0000000000..181960ccc6 --- /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 0000000000..92232cf745 --- /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 0000000000..8bf3d5db54 --- /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 0000000000..440aa21529 --- /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 0000000000..b0b6c3b87d --- /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 0000000000..fa19503419 --- /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 0000000000..64769353e8 --- /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 0000000000..f457fc72fd --- /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 0000000000..66757db013 --- /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 0000000000..93ed03c575 --- /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 0000000000..44b4c91abe --- /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 0000000000..c7fe1c7b85 --- /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 0000000000..e5c085f4ae --- /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 0000000000..549a4e76f2 --- /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 0000000000..ff2feaec54 --- /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 0000000000..74b9e50364 --- /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 0000000000..4714815a6d --- /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 0000000000..32d3f8c933 --- /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 0000000000..b38faf43b4 --- /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 0000000000..43ac486e0e --- /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 0000000000..34195132bc --- /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 0000000000..a358f09dd7 --- /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 0000000000..6f2837f4b8 --- /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 0000000000..905b01dcd1 --- /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 0000000000..cd7c49b71f --- /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 0000000000..ba380d5e15 --- /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 0000000000..8711166225 --- /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 0000000000..c137a9b1dd --- /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 0000000000..4662659d8b --- /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 0000000000..18f47e82b3 --- /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 0000000000..4a97d56f7b --- /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 0000000000..1f65228d29 --- /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 0000000000..0f79b35899 --- /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 0000000000..3171f95ee3 --- /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 0000000000..10f154f904 --- /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 0000000000..683eefefdd --- /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 0000000000..200578d1d2 --- /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 0000000000..6211acc53a --- /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 0000000000..000945a55b --- /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 0000000000..7fcc898819 --- /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 0000000000..480ec44927 --- /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 0000000000..fadf7fc869 --- /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 0000000000..a2517d5877 --- /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 0000000000..727790e6f1 --- /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 0000000000..6d45706828 --- /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 0000000000..2ee687b56d --- /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 0000000000..8e5b569fae --- /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 0000000000..90de5340cb --- /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 0000000000..b6fa1cada9 --- /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 0000000000..0c47bce7b1 --- /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 0000000000..c623b26ada --- /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 0000000000..ec841826da --- /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 0000000000..b9a3a3a839 --- /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 0000000000..f57c7ffa87 --- /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 0000000000..3c7bfba879 --- /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 0000000000..b1e550b119 --- /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 0000000000..ec2c68a651 --- /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 0000000000..d47930b5a9 --- /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 0000000000..c9b8234cc7 --- /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 0000000000..02beaffd62 --- /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 0000000000..29c2d9aed0 --- /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 0000000000..5e1df5448d --- /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 0000000000..628ba4efef --- /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 0000000000..dbb43f76b8 --- /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 0000000000..7a7100ac4d --- /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 0000000000..df42751d2c --- /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 0000000000..6e80074970 --- /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 0000000000..282db7b152 --- /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 0000000000..be9a8be092 --- /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 0000000000..b939cc02a4 --- /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 0000000000..9d338ad9c7 --- /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 0000000000..aca7fd3fea --- /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 0000000000..ce0c438fb3 --- /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 0000000000..759c2460f4 --- /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 0000000000..a75a9f4599 --- /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 0000000000..592cd8dda6 --- /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 0000000000..a15155cf25 --- /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 0000000000..f237b21633 --- /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 0000000000..e8eaf7ed8a --- /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 0000000000..b2eb7f51f7 --- /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 0000000000..3d35cd1914 --- /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 0000000000..1a3841d2b4 --- /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 0000000000..5d55d05b72 --- /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 0000000000..db995b84be --- /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 0000000000..1b84d31d8e --- /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 0000000000..8bdfa34f2e --- /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 0000000000..5385781c3f --- /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 0000000000..b3d81565b8 --- /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 0000000000..8af6b4690f --- /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 0000000000..d1aae5965a --- /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 0000000000..266fb6d752 --- /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 0000000000..5f283a1bfe --- /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 0000000000..a8fd7e5022 --- /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 0000000000..86452dc258 --- /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 0000000000..805b39e9ba --- /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 0000000000..72bfd7ef36 --- /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 0000000000..a67ab94de3 --- /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 0000000000..badad85139 --- /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 0000000000..457d50b9cd --- /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 0000000000..dfd1b08874 --- /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 0000000000..3e2231efa5 --- /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 0000000000..e35afca0af --- /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 0000000000..ebd5425ff0 --- /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 0000000000..8eeb2ee696 --- /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 0000000000..3b9f00d1e0 --- /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 0000000000..ae3fdf9d10 --- /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 0000000000..284282314c --- /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 0000000000..2a5b18c312 --- /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 0000000000..a9c43a26e1 --- /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 0000000000..f76be86612 --- /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 0000000000..d60274bff5 --- /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 0000000000..d26ecbb29a --- /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 0000000000..036bae70f2 --- /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 0000000000..82f270884c --- /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 0000000000..dd946c9fb3 --- /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 0000000000..6c52669465 --- /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 0000000000..bc87481e48 --- /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 0000000000..f36da27227 --- /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 0000000000..fc1947e49e --- /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 0000000000..526bcf44c1 --- /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 0000000000..950663b70f --- /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 0000000000..33e079123a --- /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 0000000000..f32a0c20de --- /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 0000000000..d5615fc7a7 --- /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 0000000000..e11644b010 --- /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 0000000000..4da60006aa --- /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 0000000000..6d8af1a7d7 --- /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 0000000000..290333d7e2 --- /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 0000000000..758d9cf4b0 --- /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 0000000000..c4cc5482a2 --- /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 0000000000..dbc377b4a1 --- /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 0000000000..146779d48d --- /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 0000000000..9aeb0f9a86 --- /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 0000000000..93f7509627 --- /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 0000000000..79fedba011 --- /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 0000000000..3a61f23124 --- /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 0000000000..637df5f523 --- /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 0000000000..c1b72d75ef --- /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 0000000000..a66f1b6a6a --- /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 0000000000..e5e708c269 --- /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 0000000000..ab80b22d13 --- /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 0000000000..2e5429bc04 --- /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 0000000000..5b95d4e32c --- /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 0000000000..4c9d94af60 --- /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 0000000000..c068ee673b --- /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 0000000000..fcdb5b872b --- /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 0000000000..fcfa11be5e --- /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 0000000000..3122414f36 --- /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 0000000000..02a15370dd --- /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 0000000000..361eaefb3c --- /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 0000000000..3ff43a785f --- /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 0000000000..1879bbf661 --- /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 0000000000..02e623e24d --- /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 0000000000..6d337b4fad --- /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 0000000000..26409e7d17 --- /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 0000000000..6fa6d856fa --- /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 0000000000..4ce0f482ab --- /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 0000000000..f8f3d3fd3d --- /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 0000000000..27e5452cf5 --- /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 0000000000..e46c4ce809 --- /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 0000000000..d2398d5510 --- /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 0000000000..65acb06f81 --- /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 0000000000..002fc5c7eb --- /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 0000000000..b9d86185ed --- /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 0000000000..312dc01c37 --- /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 0000000000..8ee684c249 --- /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 0000000000..1f9d91bf2a --- /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 0000000000..d716b81942 --- /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 0000000000..5c419cbffb --- /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 0000000000..3d6cf23242 --- /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 0000000000..1b04e1e73e --- /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 0000000000..0ef616839b --- /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 0000000000..26f5b3f126 --- /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 0000000000..0e957b4ac7 --- /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 0000000000..1e72aab37c --- /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 0000000000..68664acb8d --- /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 0000000000..55001f6e67 --- /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 0000000000..d9d7e10f1a --- /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 0000000000..f6815a5fa1 --- /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 0000000000..246fbc7d0d --- /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 0000000000..8694e3e7fe --- /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 0000000000..28bb30fffc --- /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 0000000000..db5902b5a6 --- /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 0000000000..cd9d86985a --- /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 0000000000..ac4e6b9ba8 --- /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 0000000000..ba6ea17df9 --- /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 0000000000..171ad9ecda --- /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 0000000000..6f012ff286 --- /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 0000000000..aa13d87b8f --- /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 0000000000..8a717be16a --- /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 0000000000..dd7a005df8 --- /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 0000000000..d5dcf1620f --- /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 0000000000..ad8f5438b6 --- /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 0000000000..6cbe55c5b9 --- /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 0000000000..4609a0fe3c --- /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 0000000000..6b5394b979 --- /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 0000000000..89d90088ee --- /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 0000000000..608b84f8a5 --- /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 0000000000..b725f64372 --- /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 0000000000..8b0ce793f8 --- /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 0000000000..dfdb2da6b2 --- /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 0000000000..cd97845ce7 --- /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 0000000000..efe459cf42 --- /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 0000000000..6000448100 --- /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 0000000000..c516ed9dca --- /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 0000000000..dc5bc3dbfc --- /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 0000000000..9280e18a60 --- /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 0000000000..021a588776 --- /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 0000000000..1c2ba19995 --- /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 0000000000..6a2129b957 --- /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 0000000000..29be2238f6 --- /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 0000000000..7390b2055a --- /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 0000000000..a789bbd51a --- /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 0000000000..b636cd384b --- /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 0000000000..a5defe00e2 --- /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 0000000000..f12424e3e5 --- /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 0000000000..934822584e --- /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 0000000000..dcf7aab16f --- /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 0000000000..3d536ebff3 --- /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 0000000000..74864aa412 --- /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 0000000000..59ea2d8033 --- /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 0000000000..cf210f855d --- /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 0000000000..5b13cb67fd --- /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 0000000000..643bcb651b --- /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 0000000000..e0dfb43d8d --- /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 0000000000..18b1a19ba5 --- /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 0000000000..781eb37580 --- /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 0000000000..3b66d3ad15 --- /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 0000000000..0d20d06fac --- /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 0000000000..712ecd9ae9 --- /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 0000000000..b391a3b703 --- /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 0000000000..b8b278c214 --- /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 0000000000..54f254b4ad --- /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 0000000000..3fa416e996 --- /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 0000000000..9e6975bc03 --- /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 0000000000..b7cae7c8e8 --- /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 0000000000..4a46282e1e --- /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 0000000000..fefff49b1f --- /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 0000000000..f26c738acb --- /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 0000000000..43473dba38 --- /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 0000000000..52f780b918 --- /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 0000000000..49e9a85019 --- /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 0000000000..aefe5260f8 --- /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 0000000000..9c6fbe80fb --- /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 0000000000..232b820fb9 --- /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 0000000000..3bcb39d8cc --- /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 0000000000..952adc0707 --- /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 0000000000..fcfbcbff13 --- /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 0000000000..a352dd762e --- /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 0000000000..72221a0602 --- /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 0000000000..078892158b --- /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 0000000000..7b951625d0 --- /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 0000000000..0838afdd64 --- /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 0000000000..ccbd40ee72 --- /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 0000000000..61562aae16 --- /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 0000000000..514a1c97d0 --- /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 0000000000..6de4af39f7 --- /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 0000000000..4b743aa0bf --- /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 0000000000..5ebe8c760a --- /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 0000000000..85fe146121 --- /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 0000000000..738529a46e --- /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 0000000000..c414f38fd4 --- /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 0000000000..bc01b97f6b --- /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 0000000000..72f84d7f9d --- /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 0000000000..94cfb89777 --- /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 0000000000..7767db6a7c --- /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 0000000000..c63ce73030 --- /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 0000000000..fc9d2aabaf --- /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 0000000000..e008fdc1c3 --- /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 0000000000..cb7fa8ba3a --- /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 0000000000..630a9b5342 --- /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 0000000000..4aaacd42b3 --- /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 0000000000..fee9070f5c --- /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 0000000000..703fc46585 --- /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 0000000000..e49b4f06ad --- /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 0000000000..929cf247a8 --- /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 0000000000..1369233aa7 --- /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 0000000000..97b659d932 --- /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 0000000000..9041da7cc4 --- /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 0000000000..514b2d0554 --- /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 0000000000..94caf43c9d --- /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 0000000000..88de923faa --- /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 0000000000..1b789eb7b4 --- /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 0000000000..1e622022a4 --- /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 0000000000..d5becb9b88 --- /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 0000000000..f0a0e9951c --- /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 0000000000..02c4e34fb9 --- /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 0000000000..7a399554df --- /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 0000000000..bbc6333b3a --- /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 0000000000..bf475f119f --- /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 0000000000..3201fe717c --- /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 0000000000..ddadef1443 --- /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 0000000000..516cafccfb --- /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 0000000000..9a8f23d1d9 --- /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 0000000000..030ec18149 --- /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 0000000000..cbb7060364 --- /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 0000000000..d652c2eebe --- /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 0000000000..72ec930b68 --- /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 0000000000..24c43fbd2c --- /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 0000000000..60f13a5adc --- /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 0000000000..337b9f4ff5 --- /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 0000000000..3c0504bcc7 --- /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 0000000000..1252da8e5b --- /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 0000000000..a4e7be9d21 --- /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 0000000000..7cba9075a4 --- /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 0000000000..0c0c8ef1ba --- /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 0000000000..8852188b02 --- /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 0000000000..2e81c4b6c7 --- /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 0000000000..cb6b7db145 --- /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 0000000000..589a4eae8c --- /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 0000000000..668bade88a --- /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 0000000000..9cd7144186 --- /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 0000000000..b13d159175 --- /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 0000000000..966e60e8ff --- /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 0000000000..552fd645aa --- /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 0000000000..76eab3e281 --- /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 0000000000..e5b180d809 --- /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 0000000000..64b20542b5 --- /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 0000000000..b392e72d0e --- /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 0000000000..1412a0bfe6 --- /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 0000000000..4af91308be --- /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 0000000000..5d591b3b7e --- /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 0000000000..ebfa4367ba --- /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 0000000000..d2dc8e398b --- /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 0000000000..c7bba427e4 --- /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 0000000000..e065080986 --- /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 0000000000..c2d15a2940 --- /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 0000000000..cc84d8225f --- /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 0000000000..dd77d11a92 --- /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 0000000000..0ccd38a949 --- /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 0000000000..54ffd15108 --- /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 0000000000..a54af4b754 --- /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 0000000000..3edb51f684 --- /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 0000000000..5d1c525999 --- /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 0000000000..4b2fc38b0c --- /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 0000000000..65ac5f4439 --- /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 0000000000..049aed3e78 --- /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 0000000000..0718dbc113 --- /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 0000000000..c35cbe5559 --- /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 0000000000..8f449b1e5e --- /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 0000000000..ffddadc3f0 --- /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 0000000000..22fc8b91c4 --- /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 0000000000..d908292a43 --- /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 0000000000..ea8dc2481a --- /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 0000000000..187af8f87f --- /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 0000000000..9df3235ca9 --- /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 0000000000..c6b7c3b1ae --- /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 0000000000..54c53e74ca --- /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 0000000000..5c1e1201bf --- /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 0000000000..f2b5b8df2c --- /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 0000000000..f21358f152 --- /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 0000000000..98ae45ab91 --- /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 0000000000..6750a983c1 --- /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 0000000000..f9f1416d8d --- /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 0000000000..267fe99c71 --- /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 0000000000..50a381c0bd --- /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 0000000000..15e30e8c65 --- /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 0000000000..182e4f2076 --- /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 0000000000..341db5dc05 --- /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 0000000000..a2bc8eca29 --- /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 0000000000..bbb6ed50c8 --- /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 0000000000..ee9e7c3675 --- /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 0000000000..19bd57df72 --- /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 0000000000..96a0a604bf --- /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 0000000000..7847f3cdfd --- /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 0000000000..ab78f750c0 --- /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 0000000000..4d0247b03b --- /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 0000000000..4c82869b85 --- /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 0000000000..6b5001bf62 --- /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 0000000000..e470d8df6e --- /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 0000000000..aff4df0552 --- /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 0000000000..d7ecb4f263 --- /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 0000000000..2c33bfee47 --- /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 0000000000..5e78ed8a30 --- /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 0000000000..27982f0d3c --- /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 0000000000..1e32a1d3cf --- /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 0000000000..27db99eba5 --- /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 0000000000..ea8daff4af --- /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 0000000000..d5914b6f70 --- /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 0000000000..ab9e86160c --- /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 0000000000..d94ecf3fd7 --- /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 0000000000..fb4f65f7e5 --- /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 0000000000..ba0e22bd72 --- /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 0000000000..60d36d336d --- /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 0000000000..6ec2960f66 --- /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 0000000000..1a9623ffc7 --- /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 0000000000..aa62ae94f7 --- /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 0000000000..f12832275e --- /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 0000000000..dbdd684e5b --- /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 0000000000..718ae9c449 --- /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 0000000000..586773b4c4 --- /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 0000000000..45e2d19547 --- /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 0000000000..e0f0b688e9 --- /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 0000000000..2338738cd6 --- /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 0000000000..827c0e0818 --- /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 0000000000..21ffb64007 --- /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 0000000000..89caf96cab --- /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 0000000000..32bd30274b --- /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 0000000000..caf1c2c086 --- /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 0000000000..086f3d4850 --- /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 0000000000..3bd70c854b --- /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 0000000000..f4aae9887d --- /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 0000000000..d050eb2cef --- /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 0000000000..afcd4711f6 --- /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 0000000000..6ce963b812 --- /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 0000000000..ba9cffdcb6 --- /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 0000000000..5ea0dc2f58 --- /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 0000000000..cecce67cee --- /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 0000000000..deb9c873db --- /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 0000000000..522d8cf56f --- /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 0000000000..c90415a214 --- /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 0000000000..4d345a6e1a --- /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 0000000000..7e04417728 --- /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 0000000000..ee1311dc10 --- /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 0000000000..bfa48ab08b --- /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 0000000000..6b9d785792 --- /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 0000000000..1ec11d4aff --- /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 0000000000..eb0db3d0c0 --- /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 0000000000..f8e5aa013b --- /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 0000000000..8481680428 --- /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 0000000000..29bf88d8c0 --- /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 0000000000..a3f480ed7b --- /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 0000000000..06cb835f51 --- /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 0000000000..9acacdc73a --- /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 0000000000..1eeedd6155 --- /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 0000000000..58e1ba060a --- /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 0000000000..150e447a7a --- /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 0000000000..1e7cd29c0f --- /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 0000000000..15f4299968 --- /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 0000000000..2783fa584b --- /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 0000000000..01191abd8d --- /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 0000000000..d07dc7882c --- /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 0000000000..4b4358edb5 --- /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 0000000000..29412990fe --- /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 0000000000..d9dc9821af --- /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 0000000000..f490584153 --- /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 0000000000..c9d82b3d04 --- /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 0000000000..d12d38986b --- /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 0000000000..7f429de4f3 --- /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 0000000000..9468f99e86 --- /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 0000000000..d27385a493 --- /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 0000000000..b3c0216b46 --- /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 0000000000..a725d3599a --- /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 0000000000..cc4b783bd1 --- /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 0000000000..f2897b97b4 --- /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 0000000000..271a8508f9 --- /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 0000000000..0cce790524 --- /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 0000000000..7ec43dc5b9 --- /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 0000000000..baaf9d8dd0 --- /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 0000000000..a6e21cca14 --- /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 0000000000..9d48b7a4f7 --- /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 0000000000..a8cc075bcb --- /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 0000000000..e4448c728f --- /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 0000000000..f87680ac8a --- /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 0000000000..4f86721616 --- /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 0000000000..ea000c6b60 --- /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 0000000000..d21a0b51b7 --- /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 0000000000..88107d2f97 --- /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 0000000000..419b549430 --- /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 0000000000..21a1d42db0 --- /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 0000000000..6460a427b3 --- /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 0000000000..fef204d542 --- /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 0000000000..5a1fe88296 --- /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 0000000000..b7e5a4bca2 --- /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 0000000000..f5a55e93e8 --- /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 0000000000..bda31c252a --- /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 0000000000..e41073f460 --- /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 0000000000..8f97594f61 --- /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 0000000000..8e819c2a81 --- /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 0000000000..56df3d07e9 --- /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 0000000000..3b301309a9 --- /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 0000000000..ebc1da7b32 --- /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 0000000000..e618586921 --- /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 0000000000..db88ce77e6 --- /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 0000000000..10962e9019 --- /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 0000000000..fd86b0f8f1 --- /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 0000000000..7422f0568c --- /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 0000000000..5bb7e631c4 --- /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 0000000000..0615ec72c2 --- /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 0000000000..f482698ba3 --- /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 0000000000..2266af3dab --- /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 0000000000..3c390ad660 --- /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 0000000000..7ccf5587f8 --- /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 0000000000..298673dcf1 --- /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 0000000000..ca2d6a7d88 --- /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 0000000000..4dfb026027 --- /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 0000000000..58e29108be --- /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 0000000000..5fb60ebcaa --- /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 0000000000..d0eabbc751 --- /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 0000000000..88cbf27d3d --- /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 0000000000..de3eed78da --- /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 0000000000..9fc21aa61d --- /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 0000000000..00cf0fbf76 --- /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 0000000000..a878670bc4 --- /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 0000000000..9a094bfc29 --- /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 0000000000..73d9c296a5 --- /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 0000000000..59ae6a9f88 --- /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 0000000000..e6ad0d2bdb --- /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 0000000000..ec093eab18 --- /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 0000000000..f557264ee1 --- /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 0000000000..5b42a35e89 --- /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 0000000000..01bdc404c3 --- /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 0000000000..b9eb65e1dc --- /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 0000000000..5c01bf61fc --- /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 0000000000..203e32a7fd --- /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 0000000000..cbc4e3fc5e --- /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 0000000000..a40c848e9b --- /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 0000000000..c1f5afea4e --- /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 0000000000..6ce72b4ff5 --- /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 0000000000..4373b7069e --- /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 0000000000..f52b83774b --- /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 0000000000..028eb6d2a2 --- /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 0000000000..b53dd704d8 --- /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 0000000000..93da56b75c --- /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 0000000000..7ddd1e6607 --- /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 0000000000..300bb172a2 --- /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 0000000000..dfd57b3b6b --- /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 0000000000..e59d9b93b7 --- /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 0000000000..f70451f10e --- /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 0000000000..55178ba4c6 --- /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 0000000000..cf8ad41748 --- /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 0000000000..179b72d087 --- /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 0000000000..d4580fc054 --- /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 0000000000..ba13c8553b --- /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 0000000000..2f683c7c71 --- /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 0000000000..062eb3f87e --- /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 0000000000..bd49e5cc83 --- /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 0000000000..cc87091fa2 --- /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 0000000000..1e2cd07cfb --- /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 0000000000..5f0f848ce4 --- /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 0000000000..048f72275e --- /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 0000000000..649d299e20 --- /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 0000000000..8bb52c2f3f --- /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 0000000000..aa74344187 --- /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 0000000000..9ae04b2312 --- /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 0000000000..1650d924e7 --- /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 0000000000..4aa84aa11e --- /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 0000000000..a9e33c604d --- /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 0000000000..c28af0a783 --- /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 0000000000..7a16056f3f --- /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 0000000000..10a4bac206 --- /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 0000000000..514cfb3ce7 --- /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 0000000000..0fc03197f5 --- /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 0000000000..c5bdad5047 --- /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 0000000000..8b39f1b993 --- /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 0000000000..f9fd4f4e32 --- /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 0000000000..2440a4af10 --- /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 0000000000..8a8d5144a5 --- /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 0000000000..5c2dd6e643 --- /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 0000000000..2095a3e2f4 --- /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 0000000000..3ba5098b89 --- /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 0000000000..a6189a527b --- /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 0000000000..fd5f9508b7 --- /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 0000000000..198142dfe6 --- /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 0000000000..06f260cfcc --- /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 0000000000..9e0588ead9 --- /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 0000000000..6404183816 --- /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 0000000000..c18e4288a4 --- /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 0000000000..efc74d306e --- /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 0000000000..4cb73d3a82 --- /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 0000000000..ef840c96b1 --- /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 0000000000..3a2875c72f --- /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 0000000000..7233a1695c --- /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 0000000000..d53783477d --- /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 0000000000..1677ba269a --- /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 0000000000..6d7da1508e --- /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 0000000000..408a9c97e7 --- /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 0000000000..9830869bf6 --- /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 0000000000..3426326396 --- /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 0000000000..0622adcf83 --- /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 0000000000..c4fca48169 --- /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 0000000000..90e0401bbf --- /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 0000000000..1b30cada38 --- /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 0000000000..6120a81036 --- /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 0000000000..a10f8f6849 --- /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 0000000000..d5df4fe807 --- /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 0000000000..07e027bb2d --- /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 0000000000..b2fce0d534 --- /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 0000000000..d0df996327 --- /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 0000000000..51b3466225 --- /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 0000000000..147db90545 --- /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 0000000000..af6d59a743 --- /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 0000000000..b224d0b6bd --- /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 0000000000..739d6fa439 --- /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 0000000000..4e0e8b69ae --- /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 0000000000..cc1ed197ce --- /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 0000000000..eb036e4659 --- /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 0000000000..dbbc400d7d --- /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 0000000000..6dda80793d --- /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 0000000000..649c1ddf65 --- /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 0000000000..3164306fa3 --- /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 0000000000..864d4283a0 --- /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 0000000000..ed3e15150a --- /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 0000000000..ea89732b18 --- /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 0000000000..23963c5079 --- /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 0000000000..bb5503398f --- /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 0000000000..e0bf902aee --- /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 0000000000..ffa9f6be24 --- /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 0000000000..a642c3e7aa --- /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 0000000000..75f2595a5f --- /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 0000000000..649a56410f --- /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 0000000000..01c66e80b6 --- /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 0000000000..b1f34202db --- /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 0000000000..8d58a24a2b --- /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 0000000000..20b426cf61 --- /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 0000000000..71fd6f31c0 --- /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 0000000000..7d62e35bee --- /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 0000000000..1a1d2c8615 --- /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 0000000000..5ed183e383 --- /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 0000000000..3530d670ad --- /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 0000000000..74d4283398 --- /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 0000000000..d0b8affcf9 --- /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 0000000000..7e3e7a8dd3 --- /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 0000000000..e49e6d86b1 --- /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 0000000000..052fb6c6f8 --- /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 0000000000..075ea7ab20 --- /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 0000000000..5b2a26f080 --- /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 0000000000..e759c0e2d9 --- /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 0000000000..ee81e45c08 --- /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 0000000000..f8d548c77e --- /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 0000000000..f5eeba24b9 --- /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 0000000000..dbad26515e --- /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 0000000000..c85e21ffe4 --- /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 0000000000..85f8d6ec00 --- /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 0000000000..24aee2b29e --- /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 0000000000..4cc8aa668c --- /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 0000000000..a74c6b8774 --- /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 0000000000..c8c7ba2ac6 --- /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 0000000000..d00698708a --- /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 0000000000..d0cbb5eea6 --- /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 0000000000..bc4c994399 --- /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 0000000000..23ef1cf65b --- /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 0000000000..74b6e2bc14 --- /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 0000000000..dfdc4881ec --- /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 0000000000..47480c2954 --- /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 0000000000..614cbadaf3 --- /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 0000000000..42ff382a05 --- /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 0000000000..cbe4bebfb4 --- /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 0000000000..dce14e1d21 --- /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 0000000000..7fb2b4bb67 --- /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 0000000000..423a354470 --- /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 0000000000..42f58d03f8 --- /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 0000000000..00a2f13656 --- /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 0000000000..f75f50e2a5 --- /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 0000000000..c1f798f15d --- /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 0000000000..3c063f0e3a --- /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 0000000000..89025f569d --- /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 0000000000..c355159ee0 --- /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 0000000000..47c836e1e8 --- /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 0000000000..b9808019b7 --- /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 0000000000..2e0b1a023e --- /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 0000000000..292613739c --- /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 0000000000..7d3fd470f0 --- /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 0000000000..2ee9bc3252 --- /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 0000000000..cd9512c896 --- /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 0000000000..ba6e790c46 --- /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 0000000000..3f35186be0 --- /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 0000000000..2c9a38eed8 --- /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 0000000000..e7617bf9d8 --- /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 0000000000..9432ddd457 --- /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 0000000000..002e345d48 --- /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 0000000000..3d05df255f --- /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 0000000000..95792514dd --- /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 0000000000..b2c02d1106 --- /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 0000000000..e49545fc82 --- /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 0000000000..ff2373e08c --- /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 0000000000..de7918b31a --- /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 0000000000..3e5e5ca6f4 --- /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 0000000000..9f80de29e9 --- /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 0000000000..49bc6ee917 --- /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 0000000000..996c6fe8f9 --- /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 0000000000..29d5a48f91 --- /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 0000000000..bf01f0ffdf --- /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 0000000000..a151e5797e --- /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 0000000000..d7e44c595d --- /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 0000000000..87f5fcf86c --- /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 0000000000..9b4365dfab --- /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 0000000000..295f017b14 --- /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 0000000000..ee33efeef0 --- /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 0000000000..f73d9604bb --- /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 0000000000..60f7bee14a --- /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 0000000000..4918c1c9a0 --- /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 0000000000..a78988546f --- /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 0000000000..60881a56e0 --- /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 0000000000..0d994817b0 --- /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 0000000000..6fb5aa6b61 --- /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 0000000000..b72f1c57c9 --- /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 0000000000..22a8b29ab9 --- /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 0000000000..b23f7c5935 --- /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 0000000000..56d68d4da3 --- /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 0000000000..e547e5b556 --- /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 0000000000..fb3b323dd7 --- /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 0000000000..26d7b749ac --- /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 0000000000..47291e9fe0 --- /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 0000000000..87c16febdc --- /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 0000000000..bc86027114 --- /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 0000000000..61febe86a3 --- /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 0000000000..5bf6f61c12 --- /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 0000000000..8eaf85f5cc --- /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 0000000000..dfb707b28e --- /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 0000000000..24161f9f9e --- /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 0000000000..2a11ee5c12 --- /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 0000000000..4c6f41046e --- /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 0000000000..46e2e254fb --- /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 0000000000..ee011cf130 --- /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 0000000000..4bd41b6900 --- /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 0000000000..1388c91cd2 --- /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 0000000000..3ca3cce7f5 --- /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 0000000000..18cd4af076 --- /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 0000000000..32d82001ef --- /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 0000000000..1a922a3b8a --- /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 0000000000..a4cbb1b330 --- /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 0000000000..bcb15450f4 --- /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 0000000000..8520429791 --- /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 0000000000..a453d0ab0a --- /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 0000000000..2f8edb1b4c --- /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 0000000000..88658a5334 --- /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 0000000000..2193f70f09 --- /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 0000000000..ccd44e5ae9 --- /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 0000000000..80548b2c12 --- /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 0000000000..d4e4273464 --- /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 0000000000..fc5ff75873 --- /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 0000000000..c811ce4805 --- /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 0000000000..19c0c0fac0 --- /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 0000000000..b74443deb2 --- /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 0000000000..cacdaecccb --- /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 0000000000..384dbee48c --- /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 0000000000..c156c2d753 --- /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 0000000000..16aaa5e9c8 --- /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 0000000000..33ec321fdd --- /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 0000000000..f76c71dadc --- /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 0000000000..dac27d9469 --- /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 0000000000..5d5409e9ec --- /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 0000000000..2c51d018fd --- /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 0000000000..dc89f05c96 --- /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 0000000000..719fe599a8 --- /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 0000000000..80072d97ed --- /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 0000000000..10024226a1 --- /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 0000000000..ff406a2cf8 --- /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 0000000000..36605dd9c7 --- /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 0000000000..3369b83fe4 --- /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 0000000000..57a2c82b71 --- /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 0000000000..f00867f8ae --- /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 0000000000..c1fd0bb843 --- /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 0000000000..d87d2ad201 --- /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 0000000000..24d214fa15 --- /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 0000000000..7e2ea85920 --- /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 0000000000..2ee13a59b3 --- /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 0000000000..a83fb7cfa7 --- /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 0000000000..7613e83f41 --- /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 0000000000..1b3d77bcd4 --- /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 0000000000..61067921c7 --- /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 0000000000..67e9585fb7 --- /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 0000000000..ac89883a6f --- /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 0000000000..d1c27fe0f5 --- /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 0000000000..82fc946b13 --- /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 0000000000..df7f88de4e --- /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 0000000000..4c3484c71d --- /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 0000000000..118fccd95e --- /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 0000000000..ff104a3135 --- /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 0000000000..dddda088e4 --- /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 0000000000..780b19337c --- /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 0000000000..86055b6f09 --- /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 0000000000..802946b100 --- /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 0000000000..8adf1e1b55 --- /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 0000000000..f7f96da287 --- /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 0000000000..87c25055d4 --- /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 0000000000..b019acc79a --- /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 0000000000..41df0cc82b --- /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 0000000000..78b6987036 --- /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 0000000000..97d34baf33 --- /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 0000000000..1354f8351d --- /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 0000000000..c744ac64cf --- /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 0000000000..f9d52b40f3 --- /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 0000000000..d735d35c34 --- /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 0000000000..0b2958a15a --- /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 0000000000..970e258cee --- /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 0000000000..2d6dd92d9e --- /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 0000000000..b593c7a773 --- /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 0000000000..2a2374b5d3 --- /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 0000000000..ec100ba798 --- /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 0000000000..c3c1b85b32 --- /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 0000000000..5f43429326 --- /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 0000000000..ee12afea6c --- /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 0000000000..da1c4ba3f7 --- /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 0000000000..cd54588364 --- /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 0000000000..e5b96b6997 --- /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 0000000000..34bae904c8 --- /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 0000000000..043495e074 --- /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 0000000000..f0162a9596 --- /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 0000000000..171ce9a658 --- /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 0000000000..9be776cd2f --- /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 0000000000..ae23f98c5a --- /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 0000000000..c8693a2076 --- /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 0000000000..b06e9cddee --- /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 0000000000..997a10d9f7 --- /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 0000000000..30e6639fbb --- /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 0000000000..e1fbfbce4f --- /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 0000000000..98eb3adc4f --- /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 0000000000..641ebd8138 --- /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 0000000000..ddd36b5424 --- /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 0000000000..442c72be67 --- /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 0000000000..b586e81062 --- /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 0000000000..f74e66e4cb --- /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 0000000000..181edcf399 --- /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 0000000000..08a8a0ebae --- /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 0000000000..4f662ddb35 --- /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 0000000000..1e0d21a576 --- /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 0000000000..d135c16762 --- /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 0000000000..51207ca698 --- /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 0000000000..74708ce848 --- /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 0000000000..058022dac9 --- /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 0000000000..150b0f01b3 --- /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 0000000000..176819d8a2 --- /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 0000000000..13bbda7c96 --- /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 0000000000..4758067dde --- /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 0000000000..8ec00804e6 --- /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 0000000000..1725241810 --- /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 0000000000..bdc1b26794 --- /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 0000000000..21ea74c125 --- /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 0000000000..77ab5e323c --- /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 0000000000..43cf686ea5 --- /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 0000000000..b80df29404 --- /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 0000000000..e7feda39d1 --- /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 0000000000..70763b70af --- /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 0000000000..6c479edf1a --- /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 0000000000..98dfe4353c --- /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 0000000000..8d7fdef45b --- /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 0000000000..f6ee83acbf --- /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 0000000000..2541397787 --- /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 0000000000..bd878a5e2a --- /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 0000000000..f8163ada56 --- /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 0000000000..fd78911cfa --- /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 0000000000..9d2d23d968 --- /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 0000000000..18d0d88bc6 --- /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 0000000000..115fd1c883 --- /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 0000000000..d279354a13 --- /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 0000000000..0b66ac39b4 --- /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 0000000000..a15a1bd006 --- /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 0000000000..69432d8187 --- /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 0000000000..4d3640fe23 --- /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 0000000000..5cbb74da2c --- /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 0000000000..64c067b605 --- /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 0000000000..0eabc2576b --- /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 0000000000..973b702743 --- /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 0000000000..43dff12723 --- /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 0000000000..156941eace --- /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 0000000000..5fd5844d5d --- /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 0000000000..1e72509ed4 --- /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 0000000000..31998e952d --- /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 0000000000..faf1e56e38 --- /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 0000000000..87998626fa --- /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 0000000000..4d9e20c8af --- /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 0000000000..63f633f8bb --- /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 0000000000..a8c85e234d --- /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 0000000000..e29eccd11c --- /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 0000000000..a6bd49b380 --- /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 0000000000..e20e1b45b6 --- /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 0000000000..df5ef2bb33 --- /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 0000000000..87478df111 --- /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 0000000000..74f40cf408 --- /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 0000000000..e40cb4fc14 --- /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 0000000000..ad3c29295a --- /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 0000000000..34ff16c421 --- /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 0000000000..3b9b6e0c05 --- /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 0000000000..ee7823af41 --- /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 0000000000..47ca2d42f9 --- /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 0000000000..ef9a4e8325 --- /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 0000000000..b7d5e5a1d0 --- /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 0000000000..f1d8d72a08 --- /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 0000000000..9980e7a69d --- /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 0000000000..264ad918cc --- /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 0000000000..76e2c938ab --- /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 0000000000..deed0c62bb --- /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 0000000000..259a490b35 --- /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 0000000000..825b183fc8 --- /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 0000000000..6bc6eadffe --- /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 0000000000..df663bc776 --- /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 0000000000..d3aa64054d --- /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 0000000000..0985d541af --- /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 0000000000..a6c706d3a7 --- /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 0000000000..2611b90a04 --- /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 0000000000..89ac0edee6 --- /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 0000000000..be0d63bc1f --- /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 0000000000..bd7b3ed672 --- /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 0000000000..4d8eacd143 --- /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 0000000000..5f9a368049 --- /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 0000000000..2e0c041953 --- /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 0000000000..e1c8e66e56 --- /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 0000000000..a171077e29 --- /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 0000000000..8fc8caa8f3 --- /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 0000000000..f9a5547442 --- /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 0000000000..c28e4665db --- /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 0000000000..314d7f8967 --- /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 0000000000..5548f24671 --- /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 0000000000..d290b19285 --- /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 0000000000..74cdbb85b0 --- /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 0000000000..192d552059 --- /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 0000000000..18cdb523a3 --- /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 0000000000..afd6bbc59a --- /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 0000000000..2c4fe3d0e2 --- /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 0000000000..f53d9b4ca1 --- /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 0000000000..19f3d4f7cf --- /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 0000000000..38983dbb6c --- /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 0000000000..2b05ed8ca0 --- /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 0000000000..ada02d313a --- /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 0000000000..5bfe0bc0e3 --- /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 0000000000..02a17979d1 --- /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 0000000000..e02dcbae4a --- /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 0000000000..131b61b206 --- /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 0000000000..e430b54544 --- /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 0000000000..f8ea2cc729 --- /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 0000000000..1d5308abee --- /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 0000000000..d97e51e6d2 --- /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 0000000000..3b62017206 --- /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 0000000000..38dc09bf49 --- /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 0000000000..4395f058fc --- /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 0000000000..52129d8d95 --- /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 0000000000..85e266902c --- /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 0000000000..b16832c7ee --- /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 0000000000..08bcc865e1 --- /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 0000000000..be6a5151f8 --- /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 0000000000..248f4f842d --- /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 0000000000..7bce1b1c39 --- /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 0000000000..d350a6d2b8 --- /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 0000000000..37da62ae2f --- /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 0000000000..21ce4d010a --- /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 0000000000..36e0d04ff4 --- /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 0000000000..b5e2212b06 --- /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 0000000000..d3e27a408c --- /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 0000000000..d4dd372086 --- /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 0000000000..e15337f0ed --- /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 0000000000..8995088376 --- /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 0000000000..b8f4bdf44b --- /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 0000000000..ed1763a833 --- /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 0000000000..67976043db --- /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 0000000000..6262f49dfd --- /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 0000000000..fa5324b183 --- /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 0000000000..7eca7d0241 --- /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 0000000000..3fc9c4e387 --- /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 0000000000..7e4f3b6806 --- /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 0000000000..3fbc862869 --- /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 0000000000..5c75539079 --- /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 0000000000..6b4e281a01 --- /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 0000000000..5d2f633193 --- /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 0000000000..c98b81d908 --- /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 0000000000..9bc3c942a7 --- /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 0000000000..da383f7aa5 --- /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 0000000000..acd9253d1d --- /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 0000000000..24b4e3f5d2 --- /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 0000000000..c4f962eb86 --- /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 0000000000..6fc215b44e --- /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 0000000000..d14f4a60cd --- /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 0000000000..bf56a3e921 --- /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 0000000000..304e6fcd3d --- /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 0000000000..74516f3b0e --- /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 0000000000..b1057e9d73 --- /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 0000000000..d18fdccca4 --- /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 0000000000..d1b90fd56b --- /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 0000000000..1bef69dcdf --- /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 0000000000..19f58544a2 --- /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 0000000000..2ab0374cba --- /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 0000000000..342d514cc8 --- /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 0000000000..63634716ab --- /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 0000000000..f565b58083 --- /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 0000000000..77110975b1 --- /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 0000000000..d4848d17a0 --- /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 0000000000..41cc2b1c87 --- /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 0000000000..8575de8be0 --- /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 0000000000..80c3c6de80 --- /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 0000000000..dea1cb65c5 --- /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 0000000000..a05844dc40 --- /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 0000000000..0655b140b0 --- /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 0000000000..6bc6c487ac --- /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 0000000000..85c896da55 --- /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 0000000000..a131265946 --- /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 0000000000..2b388aea44 --- /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 0000000000..7b2b686923 --- /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 0000000000..3fa63d344b --- /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 0000000000..4cb6815d8c --- /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 0000000000..d8aab64201 --- /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 0000000000..8833486616 --- /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 0000000000..a8e211d5dd --- /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 0000000000..e5e4ebf6e0 --- /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 0000000000..af2dcb9560 --- /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 0000000000..558e164e0e --- /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 0000000000..993e7ff958 --- /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 0000000000..33f55f1e42 --- /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 0000000000..6a81f97275 --- /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 0000000000..e80acac0c2 --- /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 0000000000..009418d1a5 --- /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 0000000000..8294ee5c67 --- /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 0000000000..5b11f5b672 --- /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 0000000000..35c1ac45a0 --- /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 0000000000..6263cb2ac3 --- /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 0000000000..b4a5531be6 --- /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 0000000000..986f9bb11c --- /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 0000000000..694a69d5ab --- /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 0000000000..f782ad3778 --- /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 0000000000..58f18c57e8 --- /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 0000000000..aae15f2503 --- /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 0000000000..c2d572be69 --- /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 0000000000..f03ab0285e --- /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 0000000000..83c3a525b9 --- /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 0000000000..99a32cda04 --- /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 0000000000..19801c727d --- /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 0000000000..c237ccefef --- /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 0000000000..51a71646a7 --- /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 0000000000..f4aaace18e --- /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 0000000000..0683536c23 --- /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 0000000000..08add2d036 --- /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 0000000000..392afd363a --- /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 0000000000..07d006a464 --- /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 0000000000..1115f0f6c0 --- /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 0000000000..50481f5581 --- /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 0000000000..6dd7dfa067 --- /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 0000000000..94288f8422 --- /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 0000000000..131e78c296 --- /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 0000000000..d27cfc3c97 --- /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 0000000000..069e6896b9 --- /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 0000000000..89149eb1f6 --- /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 0000000000..7014844a82 --- /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 0000000000..4f273d0696 --- /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 0000000000..2337482929 --- /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 0000000000..a292e4e15b --- /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 0000000000..39bb14b199 --- /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 0000000000..9448b207a9 --- /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 0000000000..cfc490f972 --- /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 0000000000..e19b0e1282 --- /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 0000000000..6ef7094291 --- /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 0000000000..106dea8044 --- /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 0000000000..334ca8b86c --- /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 0000000000..8bd0436484 --- /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 0000000000..1e39e5cd4d --- /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 0000000000..5bf75d19b5 --- /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 0000000000..7e6e4f26cd --- /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 0000000000..b6cbba39df --- /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 0000000000..2bca5ebb30 --- /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 0000000000..c1d724be4e --- /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 0000000000..1a976a5d6e --- /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 0000000000..cc03b31e5c --- /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 0000000000..428a6fed52 --- /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 0000000000..397bb39edd --- /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 0000000000..4a9596de7a --- /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 0000000000..fd0a1da295 --- /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 0000000000..c14c7bb172 --- /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 0000000000..0299ac7b68 --- /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 0000000000..102878d845 --- /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 0000000000..54bbb041ba --- /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 0000000000..793c556f7a --- /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 0000000000..d694b77177 --- /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 0000000000..d7293cb788 --- /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 0000000000..57ba2a90a7 --- /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 0000000000..2029c12be2 --- /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 0000000000..e042731f07 --- /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 0000000000..fd90ab7ef1 --- /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 0000000000..ed68b42a1d --- /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 0000000000..a4b85857f7 --- /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 0000000000..c9282ccdb7 --- /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 0000000000..a0ac4f87fc --- /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 0000000000..f33e4af5a0 --- /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 0000000000..0a1493602e --- /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 0000000000..79ace33592 --- /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 0000000000..b2e998a148 --- /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 0000000000..d694204e41 --- /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 0000000000..efc82eddf0 --- /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 0000000000..e4b909e2e6 --- /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 0000000000..e3c2a2c0fc --- /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 0000000000..1af9495e26 --- /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 0000000000..a2106dfd48 --- /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 0000000000..654cea8594 --- /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 0000000000..55607c9195 --- /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 0000000000..c31381c6d9 --- /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 0000000000..9ec381ea40 --- /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 0000000000..c0e9b0f198 --- /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 0000000000..85a7a0ca1d --- /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 0000000000..973d6ba69a --- /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 0000000000..4cec5dd318 --- /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 0000000000..e45cae2190 --- /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 0000000000..b51f82187e --- /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 0000000000..38969f6522 --- /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 0000000000..43859007b3 --- /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 0000000000..ea12e40fc1 --- /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 0000000000..beaede2afc --- /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 0000000000..5563cfdda6 --- /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 0000000000..28a38404dc --- /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 0000000000..38d0170def --- /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 0000000000..0b31e04467 --- /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 0000000000..dc7f50584a --- /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 0000000000..8dfcbb1c55 --- /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 0000000000..2ab383011a --- /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 0000000000..ae021e7184 --- /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 0000000000..e4193c4df2 --- /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 0000000000..135da6ee90 --- /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 0000000000..cafcf74f00 --- /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 0000000000..a9c1a7ac47 --- /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 0000000000..2847c1f581 --- /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 0000000000..de20c719f9 --- /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 0000000000..136c202490 --- /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 0000000000..d6fb16112a --- /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 0000000000..49124cdea3 --- /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 0000000000..ed37f30c06 --- /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 0000000000..26dcd77b47 --- /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 0000000000..9b6cf16ae9 --- /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 0000000000..cbc5f84fa7 --- /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 0000000000..145a54e8d7 --- /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 0000000000..765bb116ff --- /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 0000000000..f7f3f6b718 --- /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 0000000000..c67010f229 --- /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 0000000000..79ca3bbf18 --- /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 0000000000..7769b25e94 --- /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 0000000000..40e5ac3a84 --- /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 0000000000..50b40291f5 --- /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 0000000000..4244db741e --- /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 0000000000..2e57a5b69d --- /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 0000000000..41d7419e70 --- /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 0000000000..eb8d4327f1 --- /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 0000000000..4dbb5c10c9 --- /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 0000000000..aa7cf5ddb4 --- /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 0000000000..72e12c0830 --- /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 0000000000..9ccef9f738 --- /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 0000000000..b068ed105b --- /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 0000000000..b293bc964d --- /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 0000000000..cae4abd65c --- /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 0000000000..a572de6f2d --- /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 0000000000..ed6e4d632e --- /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 0000000000..ee5b57cedc --- /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 0000000000..c1e1f07d30 --- /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 0000000000..099f492a50 --- /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 0000000000..d2338392e5 --- /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 0000000000..4803228fb6 --- /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 0000000000..de36485ca6 --- /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 0000000000..3b00db39f0 --- /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 0000000000..74ee43b9da --- /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 0000000000..868820b38c --- /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 0000000000..aeea9fcfff --- /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 0000000000..34acd67c1a --- /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 0000000000..66864c5002 --- /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 0000000000..0ae0ce967a --- /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 0000000000..693b913bf3 --- /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 0000000000..2e764341f0 --- /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 0000000000..7f7ee624e4 --- /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 0000000000..655324e356 --- /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 0000000000..e3fa990517 --- /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 0000000000..9b7c648ceb --- /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 0000000000..90bf6b2e54 --- /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 0000000000..d2ec6a2305 --- /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 0000000000..6687e02f61 --- /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 0000000000..216df9539d --- /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 0000000000..07551a720e --- /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 0000000000..928cda72c6 --- /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 0000000000..083c158680 --- /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 0000000000..677ddae36d --- /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 0000000000..3b29083d44 --- /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 0000000000..de40012188 --- /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 0000000000..b6e1f31774 --- /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 0000000000..6fa41c7072 --- /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 0000000000..93abaf403b --- /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 0000000000..eb15b18e62 --- /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 0000000000..1537c92acc --- /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 0000000000..b43aa4c9eb --- /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 0000000000..857c2589ff --- /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 0000000000..2a03f51d12 --- /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 0000000000..a2dfbbaa44 --- /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 0000000000..d138e121e4 --- /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 0000000000..9235fbc2f7 --- /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 0000000000..5bb2af7e26 --- /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 0000000000..ad667b59b1 --- /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 0000000000..0a7358017a --- /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 0000000000..57d6edf27b --- /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 0000000000..5e7e13ba64 --- /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 0000000000..eab98e771b --- /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 0000000000..98d42588b8 --- /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 0000000000..a61516be21 --- /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 0000000000..c3b73ddb9c --- /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 0000000000..439461ba83 --- /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 0000000000..d1a12b2f5b --- /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 0000000000..5c72304fb2 --- /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 0000000000..9af41463ed --- /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 0000000000..8bc3eb2172 --- /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 0000000000..a2c10c5a00 --- /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 0000000000..6e2a68e972 --- /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 0000000000..74d03149f9 --- /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 0000000000..5a40f25434 --- /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 0000000000..503cadd8ba --- /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 0000000000..a780690b7b --- /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 0000000000..af8a72aa25 --- /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 0000000000..dfd3a64fdd --- /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 0000000000..cda0aeb468 --- /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 0000000000..0b6c5ef5bc --- /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 0000000000..438a05547d --- /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 0000000000..27cd4f8eb7 --- /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 0000000000..f3fe632135 --- /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 0000000000..e0fdc25318 --- /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 0000000000..c0b087210c --- /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 0000000000..dd0fe07413 --- /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 0000000000..086942d514 --- /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 0000000000..ec873b8d1d --- /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 0000000000..7e4ea51713 --- /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 0000000000..f94a9fa549 --- /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 0000000000..dea790620a --- /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 0000000000..42a2d365b4 --- /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 0000000000..4d78385b1a --- /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 0000000000..412f27261b --- /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 0000000000..bd61b16153 --- /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 0000000000..1cfedf8fcf --- /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 0000000000..d8be4f433d --- /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 0000000000..d134d18034 --- /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 0000000000..56ddf83f38 --- /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 0000000000..ee7bd0aeec --- /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 0000000000..4c67be775d --- /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 0000000000..39de32bd9b --- /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 0000000000..0a171266ab --- /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 0000000000..c5e3580301 --- /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 0000000000..54e98f74b2 --- /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 0000000000..5dcfcb6127 --- /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 0000000000..9f144bf9dd --- /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 0000000000..ed48873962 --- /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 0000000000..687de8abb8 --- /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 0000000000..1c20e0c62d --- /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 0000000000..4fb8c16075 --- /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 0000000000..552c877940 --- /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 0000000000..c170d6793b --- /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 0000000000..5895abfa0f --- /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 0000000000..29d61f56e7 --- /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 0000000000..b08eeabf98 --- /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 0000000000..36b13e6e3d --- /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 0000000000..f93c36cfe5 --- /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 0000000000..825fa71f6c --- /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 0000000000..5e181f349f --- /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 0000000000..fdb1fa2433 --- /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 0000000000..567526b427 --- /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 0000000000..3889710532 --- /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 0000000000..8797cbb8e7 --- /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 0000000000..c88272dee4 --- /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 0000000000..f3ca997124 --- /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 0000000000..f4ad72c5d1 --- /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 0000000000..d4dda960f5 --- /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 0000000000..df2000e661 --- /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 0000000000..4aa69247fb --- /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 0000000000..2c09c78d31 --- /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 0000000000..b939ffe80d --- /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 0000000000..bac4ab8b36 --- /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 0000000000..1970e82181 --- /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 0000000000..5a450a2b4d --- /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 0000000000..fe9ff6fa0c --- /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 0000000000..64d5ab2a99 --- /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 0000000000..f999290ad8 --- /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 0000000000..3f22f381c8 --- /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 0000000000..8f16337932 --- /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 0000000000..6d22e0794f --- /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 0000000000..559348c739 --- /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 0000000000..9f3129a792 --- /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 0000000000..9736da8a64 --- /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 0000000000..360b495668 --- /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 0000000000..53c45debc8 --- /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 0000000000..d779f168a3 --- /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 0000000000..e07dd77d2a --- /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 0000000000..1d5cf329e4 --- /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 0000000000..5083d9c7e4 --- /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 0000000000..0b1bdf818b --- /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 0000000000..4a4b4cc3db --- /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 0000000000..5ce3484ed4 --- /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 0000000000..80e222f8fa --- /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 0000000000..58bfcf78d3 --- /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 0000000000..558af5031a --- /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 0000000000..8b9a49e51e --- /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 0000000000..bfc7d3a6a5 --- /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 0000000000..d50859d1c2 --- /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 0000000000..ade60431eb --- /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 0000000000..c79dfbe3b0 --- /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 0000000000..5be778178d --- /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 0000000000..6f226ccef2 --- /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 0000000000..3f8716a00c --- /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 0000000000..6620a17ff7 --- /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 0000000000..0b5ddb59c0 --- /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 0000000000..f7e8aeb49b --- /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 0000000000..2d44e204ff --- /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 0000000000..bb32f4d57e --- /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 0000000000..582c05307e --- /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 0000000000..e8d1f7426f --- /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 0000000000..e474dc48dd --- /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 0000000000..635521a33e --- /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 0000000000..5c1844a111 --- /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 0000000000..f1c39e3822 --- /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 0000000000..eedce20a5c --- /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 0000000000..8690c73b5e --- /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 0000000000..c9fb9cea6f --- /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 0000000000..24592ae606 --- /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 0000000000..14b62cd5cb --- /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 0000000000..de65829d32 --- /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 0000000000..ed2731946c --- /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 0000000000..3d4cb7c4e4 --- /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 0000000000..ec046f609a --- /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 0000000000..515c99444e --- /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 0000000000..420a3f890a --- /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 0000000000..118472a75f --- /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 0000000000..6c325e1b92 --- /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 0000000000..b0bf65100b --- /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 0000000000..3ab9d9daab --- /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 0000000000..c6ba4a343a --- /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 0000000000..49ec601ff7 --- /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 0000000000..2c5c27e9a8 --- /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 0000000000..95369b2e4a --- /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 0000000000..9018bf6bdd --- /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 0000000000..db083ff1cc --- /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 0000000000..7eb77333de --- /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 0000000000..2206fcf85e --- /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 0000000000..32d24e8b1b --- /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 0000000000..dd50d0494b --- /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 0000000000..91542bd329 --- /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 0000000000..603fc812ed --- /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 0000000000..04903fc6f7 --- /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 0000000000..f53c1984b5 --- /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 0000000000..f3b118c2f2 --- /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 0000000000..495baa68a6 --- /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 0000000000..f73e1fef52 --- /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 0000000000..a11d4b9407 --- /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 0000000000..f9cd805809 --- /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 0000000000..35cdbd3b48 --- /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 0000000000..89fd51e63d --- /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 0000000000..87ce76bb3e --- /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 0000000000..062e9e4cf2 --- /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 0000000000..5dda3447c7 --- /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 0000000000..cad0c4ad8f --- /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 0000000000..df061666e8 --- /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 0000000000..fd7aabb8dc --- /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 0000000000..09804e2741 --- /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 0000000000..e08cf54895 --- /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 0000000000..e0b4d4671f --- /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 0000000000..99e3c40bbb --- /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 0000000000..7024cec33b --- /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 0000000000..6c6f67ebe8 --- /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 0000000000..d153e031d1 --- /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 0000000000..8cb819da75 --- /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 0000000000..7c8e3a7b17 --- /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 0000000000..5b25473432 --- /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 0000000000..1f1e799b80 --- /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 0000000000..4307b5c2c3 --- /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 0000000000..7c3b56f2b3 --- /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 0000000000..07317c5d88 --- /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 0000000000..5c42381eb7 --- /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 0000000000..0f46843cd6 --- /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 0000000000..bf3129d379 --- /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 0000000000..368610bd1f --- /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 0000000000..d2db734cc6 --- /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 0000000000..cafb1141c7 --- /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 0000000000..b572f8892f --- /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 0000000000..0e74d2713f --- /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 0000000000..8232ed4dc7 --- /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 0000000000..6ed76437ff --- /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 0000000000..0035208ce0 --- /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 0000000000..3e97dfdfca --- /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 0000000000..0435d8c8e4 --- /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 0000000000..076280b7b0 --- /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 0000000000..44e51c9c43 --- /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 0000000000..6c9295d698 --- /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 0000000000..ab58f52b68 --- /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 0000000000..e7cbafbcc1 --- /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 0000000000..0b5049740b --- /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 0000000000..86db2bd63d --- /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 0000000000..6ccdc29cf5 --- /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 0000000000..b57c8e14d8 --- /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 0000000000..b593775d77 --- /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 0000000000..d38d881663 --- /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 0000000000..62094ede40 --- /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 0000000000..bfe38cc5a3 --- /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 0000000000..17a15d733a --- /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 0000000000..5121eb5cf9 --- /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 0000000000..9b917a70a6 --- /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 0000000000..0f3d9e1d1e --- /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 0000000000..c1640230fc --- /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 0000000000..0d31030969 --- /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 0000000000..cd3109dc1c --- /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 0000000000..2d5f626374 --- /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 0000000000..8373b524f0 --- /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 0000000000..039a1402b9 --- /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 0000000000..37361ff7fb --- /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 0000000000..6291200373 --- /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 0000000000..f26e9265e7 --- /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 0000000000..22e380063f --- /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 0000000000..f9472ea357 --- /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 0000000000..fa715a7ed4 --- /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 0000000000..92959752e9 --- /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 0000000000..635e3f8d6c --- /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 0000000000..7a294aa984 --- /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 0000000000..276900199c --- /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 0000000000..1512ea71a7 --- /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 0000000000..90d3483af9 --- /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 0000000000..1b819dae6c --- /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 0000000000..4c369bb8c8 --- /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 0000000000..ae6a1eff49 --- /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 0000000000..0f4ec531e9 --- /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 0000000000..4a0a5484a5 --- /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 0000000000..840cbd02a8 --- /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 0000000000..3bcf869658 --- /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 0000000000..209d1fb3d1 --- /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 0000000000..5b288b1193 --- /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 0000000000..f2b01975cf --- /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 0000000000..91f058762d --- /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 0000000000..4da95762a9 --- /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 0000000000..a9eec45105 --- /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 0000000000..e35b064efd --- /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 0000000000..b02af41d64 --- /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 0000000000..023d53120e --- /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 0000000000..034016e319 --- /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 0000000000..15d036c438 --- /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 0000000000..55ed85cba6 --- /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 0000000000..1ff14645e1 --- /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 0000000000..32fdb3bb54 --- /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 0000000000..883dc69c43 --- /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 0000000000..285620cc99 --- /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 0000000000..29705d0480 --- /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 0000000000..482e83776b --- /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 0000000000..a67f933255 --- /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 0000000000..9d0dc31a85 --- /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 0000000000..b584656ca3 --- /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 0000000000..030ef8b454 --- /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 0000000000..a1a8d16700 --- /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 0000000000..a66452e41a --- /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 0000000000..759dae2e7a --- /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 0000000000..1a18d1d52e --- /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 0000000000..345d19f0f2 --- /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 0000000000..ad5a1af460 --- /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 0000000000..8d82c22eeb --- /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 0000000000..7cf03aaeae --- /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 0000000000..be2a52819c --- /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 0000000000..ad44563ef2 --- /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 0000000000..b87196cec6 --- /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 0000000000..43ad7f0cb9 --- /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 0000000000..55d487c247 --- /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 0000000000..df7a8669df --- /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 0000000000..8c912a11c1 --- /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 0000000000..0e1e6a40cc --- /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 0000000000..989fa944ce --- /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 0000000000..d3361b65dd --- /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 0000000000..74ace4813b --- /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 0000000000..ee9a2062cf --- /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 0000000000..d1a5679cc5 --- /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 0000000000..dbd73f41da --- /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 0000000000..1bf9a55872 --- /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 0000000000..19ad8553dd --- /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 0000000000..8af2a6af62 --- /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 0000000000..9325c9b1a2 --- /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 0000000000..24947f74f0 --- /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 0000000000..e0d392fa18 --- /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 0000000000..056b67a079 --- /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 0000000000..97f17ac85e --- /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 0000000000..6bf5d421df --- /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 0000000000..49dae2583b --- /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 0000000000..efd776dff2 --- /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 0000000000..76f3c2cca8 --- /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 0000000000..84bc66d825 --- /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 0000000000..6430d46bfc --- /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 0000000000..2268dd7fee --- /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 0000000000..7b19b0cf56 --- /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 0000000000..12bb1258f2 --- /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 0000000000..464f227d9c --- /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 0000000000..954a0f9887 --- /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 0000000000..c68153a855 --- /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 0000000000..170c6dde42 --- /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 0000000000..bfaa914c07 --- /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 0000000000..7eee1b310e --- /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 0000000000..2e951389ce --- /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 0000000000..a4b6d83271 --- /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 0000000000..9df32d307a --- /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 0000000000..4a7cc2098b --- /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 0000000000..5fe9f31b34 --- /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 0000000000..72d5b80e38 --- /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 0000000000..21e8c94ef0 --- /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 0000000000..8c0d278836 --- /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 0000000000..965f87fffc --- /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 0000000000..268c8779ce --- /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 0000000000..be900c7b73 --- /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 0000000000..48d677a4cc --- /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 0000000000..6090cf9318 --- /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 0000000000..ed7271d28c --- /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 0000000000..a18d0d2f79 --- /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 0000000000..c7dc986690 --- /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 0000000000..b90bdd733c --- /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 0000000000..f2686b144e --- /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 0000000000..1a055b6887 --- /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 0000000000..499c35588a --- /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 0000000000..ede0f1c830 --- /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 0000000000..49e5281326 --- /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 0000000000..ab7d34089a --- /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 0000000000..ca5cb92c87 --- /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 0000000000..badea745ed --- /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 0000000000..f56636747e --- /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 0000000000..52f0323aab --- /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 0000000000..029f429af8 --- /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 0000000000..7beb97943b --- /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 0000000000..a37fc7d26e --- /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 0000000000..eec5b6425e --- /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 0000000000..e194db594b --- /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 0000000000..729090c112 --- /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 0000000000..a1e352c713 --- /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 0000000000..e7e689ce89 --- /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 0000000000..92b65e2d98 --- /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 0000000000..bd40d25e6b --- /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 0000000000..f3d0229843 --- /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 0000000000..ad72b82f92 --- /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 0000000000..ad7417ba79 --- /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 0000000000..b625216614 --- /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 0000000000..de79a370ab --- /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 0000000000..307bee3455 --- /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 0000000000..f16e1d6357 --- /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 0000000000..728d06aadc --- /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 0000000000..cd206a8470 --- /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 0000000000..7202a5614f --- /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 0000000000..95d6c9379a --- /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 0000000000..606e92ffdb --- /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 0000000000..7862113df5 --- /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 0000000000..6668f305e8 --- /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 0000000000..2e17546404 --- /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 0000000000..e16371c4b8 --- /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 0000000000..1a021223ad --- /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 0000000000..e019c3699f --- /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 0000000000..6eeac3fac1 --- /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 0000000000..038155bf4f --- /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 0000000000..a658b7fcc7 --- /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 0000000000..ee82c68f83 --- /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 0000000000..6eb6b023ad --- /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 0000000000..c93c934f89 --- /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 0000000000..94d4a23ca8 --- /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 0000000000..0b12aff532 --- /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 0000000000..93379a4e7d --- /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 0000000000..8180298d3b --- /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 0000000000..66a0d4a2c5 --- /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 0000000000..258c381393 --- /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 0000000000..0e81fe1b8c --- /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 0000000000..29570787e1 --- /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 0000000000..558ee46038 --- /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 0000000000..ecbe756e68 --- /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 0000000000..7df5601966 --- /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 0000000000..767e7e62be --- /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 0000000000..685438850e --- /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 0000000000..43c3c85b11 --- /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 0000000000..216678ca77 --- /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 0000000000..ceb4afaeea --- /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 0000000000..fd8cd73b06 --- /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 0000000000..88223919de --- /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 0000000000..899f06b338 --- /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 0000000000..9cf34fb3e3 --- /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 0000000000..b9cb1a4ff1 --- /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 0000000000..09f294503a --- /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 0000000000..8c62c61f9e --- /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 0000000000..0cee2e6c4f --- /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 0000000000..4a995faf0c --- /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 0000000000..fb10092d45 --- /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 0000000000..8e8a6beef6 --- /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 0000000000..61b82718c9 --- /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 0000000000..b719e62ed9 --- /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 0000000000..e6ca3220c1 --- /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 0000000000..4ced5795de --- /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 0000000000..ec2ba32c63 --- /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 0000000000..223a0741f6 --- /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 0000000000..eee8be71b2 --- /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 0000000000..5a8b049e69 --- /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 0000000000..fb9936947e --- /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 0000000000..bf323da5e3 --- /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 0000000000..c7b8e34b50 --- /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 0000000000..ef6a39cc6c --- /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 0000000000..2ecbb20989 --- /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 0000000000..488c20d0c9 --- /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 0000000000..af573d4eef --- /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 0000000000..96a8a3e5b7 --- /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 0000000000..b3a6be37ba --- /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 0000000000..88b6d5f205 --- /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 0000000000..25a87d2ebd --- /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 0000000000..7ba9948f1d --- /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 0000000000..df11709804 --- /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 0000000000..3a6d753df9 --- /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 0000000000..9701a8aab4 --- /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 0000000000..403823dee3 --- /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 0000000000..abc9772b6e --- /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 0000000000..e937592141 --- /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 0000000000..c082b43fd7 --- /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 0000000000..6a9adc1a8b --- /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 0000000000..0bf6e49d4d --- /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 0000000000..12fec6d5d1 --- /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 0000000000..acd1360edf --- /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 0000000000..52ec4f33ff --- /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 0000000000..c3df7c7175 --- /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 0000000000..f4f3d88fbf --- /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 0000000000..f4c87da74e --- /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 0000000000..c417ab5d90 --- /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 0000000000..561aa65ea9 --- /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 0000000000..abec762126 --- /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 0000000000..b393002030 --- /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 0000000000..d45ff5db1c --- /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 0000000000..c190fb1c63 --- /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 0000000000..73d3c0718f --- /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 0000000000..b81eb8cbf2 --- /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 0000000000..ee04efc262 --- /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 0000000000..eeb767b161 --- /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 0000000000..0e44a25182 --- /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 0000000000..54a1c55d47 --- /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 0000000000..7a3edfd8c6 --- /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 0000000000..944a128175 --- /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 0000000000..75f549c08b --- /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 0000000000..3bdc3f7158 --- /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 0000000000..a3787850e8 --- /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 0000000000..b351227c5b --- /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 0000000000..41b1e9e94e --- /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 0000000000..93fd4ec800 --- /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 0000000000..6d3775bf97 --- /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 0000000000..8b95f1bb5e --- /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 0000000000..85376259ac --- /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 0000000000..78763e98f0 --- /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 0000000000..2a1a58d872 --- /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 0000000000..abc5d70d59 --- /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 0000000000..a7200013c5 --- /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 0000000000..1b3aae1bde --- /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 0000000000..ca86ce88b0 --- /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 0000000000..6d8cecb5de --- /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 0000000000..eb2cba43f5 --- /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 0000000000..1c6e6a5a9c --- /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 0000000000..250089ccf4 --- /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 0000000000..d27bd5a0be --- /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 0000000000..0499647d08 --- /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 0000000000..7b4e65193a --- /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 0000000000..f018c2b28d --- /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 0000000000..bb20b23428 --- /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 0000000000..7128598f56 --- /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 0000000000..14db824402 --- /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 0000000000..b4bd943442 --- /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 0000000000..8744202ffc --- /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 0000000000..0a7e770a61 --- /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 0000000000..267ce203c0 --- /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 0000000000..880b9137b4 --- /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 0000000000..4b77cab41f --- /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 0000000000..bbcdac4eb4 --- /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 0000000000..b10c8bf5c0 --- /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 0000000000..e3165fd1ed --- /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 0000000000..8df2ec8bba --- /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 0000000000..7179a6a935 --- /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 0000000000..ba404b79a9 --- /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 0000000000..d963828e23 --- /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 0000000000..2f0e741000 --- /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 0000000000..f6e581abbf --- /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 0000000000..6201bedbf0 --- /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 0000000000..edef57a45f --- /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 0000000000..aaeeb7b662 --- /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 0000000000..0af6b9dab6 --- /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 0000000000..641184936b --- /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 0000000000..785a8359eb --- /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 0000000000..0a64fa9d5c --- /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 0000000000..047f0a20ef --- /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 0000000000..461749d3b0 --- /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 0000000000..dfdb2354ed --- /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 0000000000..405ab8f59e --- /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 0000000000..3731350c32 --- /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 0000000000..80d856564a --- /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 0000000000..44a86b7d4b --- /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 0000000000..9c40f299a8 --- /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 0000000000..c9c58e1220 --- /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 0000000000..09617817e0 --- /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 0000000000..e62c23df12 --- /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 0000000000..32f5a97e7a --- /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 0000000000..46c9fd7f59 --- /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 0000000000..d484de9bfa --- /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 0000000000..787fbda7c2 --- /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 0000000000..97405d8801 --- /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 0000000000..3461789b31 --- /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 0000000000..f1f81bb034 --- /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 0000000000..585ac37172 --- /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 0000000000..904e2862ef --- /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 0000000000..2be619a100 --- /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 0000000000..29aaf78943 --- /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 0000000000..5d348bdb3e --- /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 0000000000..fa92ce87f6 --- /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 0000000000..f26e18cb42 --- /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 0000000000..5b6ae5320b --- /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 0000000000..4acb9fecdb --- /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 0000000000..1747c12875 --- /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 0000000000..6807d90825 --- /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 0000000000..0af2cdc588 --- /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 0000000000..8e62d0e313 --- /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 0000000000..fc519a04d8 --- /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 0000000000..305c42c2c0 --- /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 0000000000..b33b11051c --- /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 0000000000..2be30be4c1 --- /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 0000000000..e27cf7d99b --- /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 0000000000..769e29e0bc --- /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 0000000000..a7629182c0 --- /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 0000000000..e6edc3ba0a --- /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 0000000000..ef66f8bef1 --- /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 0000000000..d7d32fbbcb --- /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 0000000000..1db38c6a79 --- /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 0000000000..ba8d8129e9 --- /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 0000000000..8404eee4b3 --- /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 0000000000..bf1dc4749f --- /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 0000000000..c251660a3c --- /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 0000000000..85ea260894 --- /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 0000000000..fdea9b49c2 --- /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 0000000000..bdd0dcc29c --- /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 0000000000..a589a53bbf --- /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 0000000000..2ccb1ab074 --- /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 0000000000..232f9a6c05 --- /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 0000000000..d523c3c700 --- /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 0000000000..c0b393de2f --- /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 0000000000..d3a73eb60d --- /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 0000000000..73b3dd83f7 --- /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 0000000000..410a930728 --- /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 0000000000..d15fccd1ac --- /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 0000000000..4b0cb0c23d --- /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 0000000000..b5f34a2b3c --- /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 0000000000..7b0b604ee2 --- /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 0000000000..03c7f9b297 --- /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 0000000000..676f7d3332 --- /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 0000000000..8004641b01 --- /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 0000000000..6d33b0bce7 --- /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 0000000000..c62aebd712 --- /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 0000000000..c28c870dfa --- /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 0000000000..8909e74ea1 --- /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 0000000000..dade2d7b43 --- /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 0000000000..1c129a30e9 --- /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 0000000000..e54356e502 --- /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 0000000000..6b96c767b2 --- /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 0000000000..a55b27295d --- /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 0000000000..d7d7737f7b --- /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 0000000000..a5934526dc --- /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 0000000000..8fdede4957 --- /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 0000000000..a12c0ec032 --- /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 0000000000..ab902e9c40 --- /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 0000000000..6d754ec983 --- /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 0000000000..8f5d998050 --- /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 0000000000..247fa8f3c9 --- /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 0000000000..f6a47d38b9 --- /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 0000000000..7076c485a9 --- /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 0000000000..a90b9c3c13 --- /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 0000000000..145a521175 --- /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 0000000000..8b5063215a --- /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 0000000000..772ed0ef59 --- /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 0000000000..1cf62db931 --- /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 0000000000..c5a00d3cc1 --- /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 0000000000..d031541862 --- /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 0000000000..1d5767344b --- /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 0000000000..ea57f4cc72 --- /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 0000000000..7df131a2c7 --- /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 0000000000..5e7a7b8d26 --- /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 0000000000..bffa7c9352 --- /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 0000000000..bbbe7363a6 --- /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 0000000000..31c28466e9 --- /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 0000000000..14322dbf6f --- /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 0000000000..1cd1e67906 --- /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 0000000000..a52376f545 --- /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 0000000000..8bc459c489 --- /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 0000000000..1674ca4dd8 --- /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 0000000000..885098ebc5 --- /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 0000000000..9107c000f7 --- /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 0000000000..1ab4e98c32 --- /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 0000000000..a1fd04ddd3 --- /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 0000000000..d582947f3a --- /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 0000000000..efac3a3cc2 --- /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 0000000000..cda679dabb --- /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 0000000000..d9b880a629 --- /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 0000000000..eb8b155bc7 --- /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 0000000000..544ab2f217 --- /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 0000000000..db826fe244 --- /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 0000000000..5d9dc81a98 --- /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 0000000000..fc24865416 --- /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 0000000000..ea705a8141 --- /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 0000000000..5d889e9351 --- /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 0000000000..6327004c75 --- /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 0000000000..14de79c381 --- /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 0000000000..154d9a5e5e --- /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 0000000000..15e41dd4dd --- /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 0000000000..28a798b991 --- /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 0000000000..a07efbfd65 --- /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 0000000000..9e874096fa --- /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 0000000000..18f6e6b137 --- /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 0000000000..99b6ef8b99 --- /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 0000000000..4fe948fe6a --- /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 0000000000..ccaa94ca8b --- /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 0000000000..9a444e36f0 --- /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 0000000000..31b17ad9c1 --- /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 0000000000..2f148c4d34 --- /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 0000000000..c8bdd24d75 --- /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 0000000000..f02b837f13 --- /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 0000000000..9704a75f8f --- /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 0000000000..50b6dc9309 --- /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 0000000000..7e9817877e --- /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 0000000000..15e60f0d20 --- /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 0000000000..5158a2d54e --- /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 0000000000..c1f77744a7 --- /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 0000000000..45a684ce85 --- /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 0000000000..69918d86dd --- /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 0000000000..3df338c8bf --- /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 0000000000..09d5939951 --- /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 0000000000..14fe8f047c --- /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 0000000000..c3bcc62cd5 --- /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 0000000000..17e3588981 --- /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 0000000000..50a6970077 --- /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 0000000000..d4398ec3db --- /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 0000000000..73c4299e33 --- /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 0000000000..9172e36860 --- /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 0000000000..7b4f0a468a --- /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 0000000000..9f2fab7095 --- /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 0000000000..5d27cea039 --- /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 0000000000..50e9b5686d --- /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 0000000000..9ff31e4b24 --- /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 0000000000..d9033e47ea --- /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 0000000000..b9470c5b63 --- /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 0000000000..8c3b464e74 --- /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 0000000000..caa5383322 --- /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 0000000000..f207f2ded7 --- /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 0000000000..0a7b6c557e --- /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 0000000000..5986e87fd7 --- /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 0000000000..e4e8f55b79 --- /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 0000000000..baaccda092 --- /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 0000000000..120d7e9d01 --- /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 0000000000..4cefcac495 --- /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 0000000000..e37f0c1b6c --- /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 0000000000..1c92b47398 --- /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 0000000000..d5634d5ebf --- /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 0000000000..9df8cab7b1 --- /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 0000000000..d826b487ed --- /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 0000000000..19808a2fd2 --- /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 0000000000..ccf4ac9841 --- /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 0000000000..5b2f6b9625 --- /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 0000000000..f06d8a10ff --- /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 0000000000..7fd031f2ba --- /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 0000000000..b6bbce12dc --- /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 0000000000..0fe82c40c0 --- /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 0000000000..53b8e9b50f --- /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 0000000000..0272678da6 --- /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 0000000000..fe00fd559a --- /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 0000000000..ccaf7fd478 --- /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 0000000000..8ad3bbca06 --- /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 0000000000..5e3e2269fe --- /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 0000000000..379bd08fbb --- /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 0000000000..bcf09943d7 --- /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 0000000000..bac4d0ba40 --- /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 0000000000..60787068a8 --- /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 0000000000..2a6bde5e0e --- /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 0000000000..56124d815b --- /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 0000000000..e6a5473a0a --- /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 0000000000..0cc36eebcf --- /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 0000000000..1738a043cf --- /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 0000000000..3a5c056ea1 --- /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 0000000000..7fb96ef09f --- /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 0000000000..6578dad8cb --- /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 0000000000..2a8bd01d8d --- /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 0000000000..b425bb018a --- /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 0000000000..8e1598addc --- /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 0000000000..4fe73244c7 --- /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 0000000000..aace06c272 --- /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 0000000000..b612c67bfa --- /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 0000000000..056f5eb1bd --- /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 0000000000..6db95bb1c7 --- /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 0000000000..9bd0b5a817 --- /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 0000000000..fb929b2996 --- /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 0000000000..8bd4969dc8 --- /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 0000000000..eeb945c3dd --- /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 0000000000..d48de14289 --- /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 0000000000..38d7ad70dc --- /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 0000000000..e76a33d1e3 --- /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 0000000000..6705a9438d --- /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 0000000000..c114e4b862 --- /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 0000000000..cd6be024d2 --- /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 0000000000..af404b25de --- /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 0000000000..9fa219d47c --- /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 0000000000..46d63c883d --- /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 0000000000..60faf740ee --- /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 0000000000..0561c111f3 --- /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 0000000000..365873cd32 --- /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 0000000000..4c99013a04 --- /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 0000000000..96ff388585 --- /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 0000000000..1f22deb794 --- /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 0000000000..23e3094226 --- /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 0000000000..919cfcb17d --- /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 0000000000..d7d7692d6c --- /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 0000000000..efaafacb4d --- /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 0000000000..4a5d83801b --- /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 0000000000..1a7a23d32b --- /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 0000000000..3551f69e1d --- /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 0000000000..a825a1c79d --- /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 0000000000..da85911dda --- /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 0000000000..e9d7eb8ab4 --- /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 0000000000..a78ce08765 --- /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 0000000000..706617e283 --- /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 0000000000..4bf79dc98f --- /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 0000000000..085d54ec06 --- /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 0000000000..0a236f5f3b --- /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 0000000000..22705a9e0e --- /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 0000000000..9cc604ff92 --- /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 0000000000..27a927edfc --- /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 0000000000..8e56e21a9a --- /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 0000000000..9f6d039cb1 --- /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 0000000000..f02ba2b7b7 --- /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 0000000000..dd7b815ee0 --- /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 0000000000..e0eb7e4a26 --- /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 0000000000..5528b5b627 --- /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 0000000000..89fa1f4ee2 --- /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 0000000000..08b93ebc9c --- /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 0000000000..b5c008b885 --- /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 0000000000..ada0a94943 --- /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 0000000000..fd932424ec --- /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 0000000000..f82ea2887f --- /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 0000000000..2b24f341f1 --- /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 0000000000..e6fe03e73c --- /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 0000000000..4e037a66d4 --- /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 0000000000..42f8866ac4 --- /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 0000000000..15965a1b6d --- /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 0000000000..7cd7e1435e --- /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 0000000000..b6506897ab --- /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 0000000000..1b969d69ba --- /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 0000000000..b0b4c7d347 --- /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 0000000000..e2f1679738 --- /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 0000000000..76fc53cb9d --- /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 0000000000..1d64fa5bbf --- /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 0000000000..b432796acc --- /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 0000000000..120804f900 --- /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 0000000000..587977cffa --- /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 0000000000..451d8b2485 --- /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 0000000000..484fdcb74c --- /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 0000000000..520e1df387 --- /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 0000000000..ca6cd656db --- /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 0000000000..f7b5b2342e --- /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 0000000000..a008ae68f0 --- /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 0000000000..b0f496d77d --- /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 0000000000..1fff0ff173 --- /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 0000000000..0fbff48ba2 --- /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 0000000000..f68d4d9f91 --- /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 0000000000..0ec74a4bc3 --- /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 0000000000..09e12061bd --- /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 0000000000..863af866b5 --- /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 0000000000..de0b6161c7 --- /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 0000000000..db6a1ecad2 --- /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 0000000000..026d846621 --- /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 0000000000..e03d381015 --- /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 0000000000..a8ddfe9b5b --- /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 0000000000..c167bbeafc --- /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 0000000000..fde3c5b00b --- /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 0000000000..f28353eb77 --- /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 0000000000..edd1561b59 --- /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 0000000000..93428178fb --- /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 0000000000..713a280ee7 --- /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 0000000000..a4cb24b42c --- /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 0000000000..4ef3fa84ad --- /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 0000000000..5cf0a5d9f4 --- /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 0000000000..0cb26b10c3 --- /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 0000000000..5f569be1ef --- /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 0000000000..9938638d98 --- /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 0000000000..1211f177c4 --- /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 0000000000..ba00aa26fc --- /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 0000000000..45cbe7384a --- /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 0000000000..65f55d3e87 --- /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 0000000000..b320e4a142 --- /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 0000000000..e611c6520e --- /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 0000000000..e32b791482 --- /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 0000000000..e369881266 --- /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 0000000000..b8e834d782 --- /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 0000000000..806a9aef35 --- /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 0000000000..e6a5d2ffbc --- /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 0000000000..1b74d80959 --- /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 0000000000..2bbc166bfd --- /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 0000000000..3fe57af35b --- /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 0000000000..4b54c3c38c --- /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 0000000000..d2efa9ba0c --- /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 0000000000..5ab30dd92c --- /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 0000000000..5540ec17e3 --- /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 0000000000..a5d7e48ba1 --- /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 0000000000..d14febf3e1 --- /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 0000000000..7bd9e41b7d --- /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 0000000000..706267da29 --- /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 0000000000..8b8ecf2186 --- /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 0000000000..a212add0ab --- /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 0000000000..e552b1ae1b --- /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 0000000000..1219252a7d --- /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 0000000000..d12faa3e17 --- /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 0000000000..9a807ebde1 --- /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 0000000000..954719b83e --- /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 0000000000..93b031dbef --- /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 0000000000..d20e543cb3 --- /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 0000000000..1f8b8b9614 --- /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 0000000000..5473516938 --- /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 0000000000..44ffcfa94f --- /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 0000000000..a856bec721 --- /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 0000000000..7e40b0b6f7 --- /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 0000000000..12cfc9ea93 --- /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 0000000000..681ad16520 --- /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 0000000000..5a91421a4d --- /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 0000000000..04435e8cfb --- /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 0000000000..28658c98ce --- /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 0000000000..c30391d81e --- /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 0000000000..d61b21a1de --- /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 0000000000..9c555a56a7 --- /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 0000000000..8dff32e765 --- /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 0000000000..c5a1f0b995 --- /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 0000000000..9a1154ee0c --- /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 0000000000..96d9aca699 --- /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 0000000000..34282af42d --- /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 0000000000..ec5760593a --- /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 0000000000..62d00c084a --- /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 0000000000..ce5fe8bdc7 --- /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 0000000000..edebfa49ee --- /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 0000000000..ca12ac6ed8 --- /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 0000000000..5fe5e7a5ef --- /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 0000000000..800e7c2906 --- /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 0000000000..318eac0c0f --- /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 0000000000..50f1669eef --- /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 0000000000..880b50aa59 --- /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 0000000000..36c61d0b3e --- /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 0000000000..5028a31c1a --- /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 0000000000..827d3231a4 --- /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 0000000000..efb762b445 --- /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 0000000000..e935a89659 --- /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 0000000000..6303a24721 --- /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 0000000000..bfd0e73e5b --- /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 0000000000..a7b31d3a7c --- /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 0000000000..280ec7b19e --- /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 0000000000..41af99f41e --- /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 0000000000..a9923aeae0 --- /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 0000000000..cc658b3352 --- /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 0000000000..929304d8dd --- /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 0000000000..b20cb846d1 --- /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 0000000000..b60491ecf4 --- /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 0000000000..ff8b017180 --- /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 0000000000..d8bf67b1d4 --- /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 0000000000..d7e54e87de --- /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 0000000000..85fddb3c4d --- /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 0000000000..883dedef74 --- /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 0000000000..2a8375c71a --- /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 0000000000..dbeda38049 --- /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 0000000000..6ad45368ac --- /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 0000000000..987e883724 --- /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 0000000000..db18013687 --- /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 0000000000..86dc9a1bf2 --- /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 0000000000..3202afba8a --- /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 0000000000..e503f0f081 --- /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 0000000000..8c02f5737b --- /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 0000000000..d50dc6beb5 --- /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 0000000000..295e6f84ba --- /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 0000000000..95e2f2b0a8 --- /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 0000000000..9e591cfabc --- /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 0000000000..483a69e196 --- /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 0000000000..2c46c8de53 --- /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 0000000000..43d949c9d5 --- /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 0000000000..ff7d4ccd9d --- /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 0000000000..812b09eebd --- /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 0000000000..1d9616f652 --- /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 0000000000..b43b222910 --- /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 0000000000..de26149a14 --- /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 0000000000..e22a49f801 --- /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 0000000000..64f87583b0 --- /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 0000000000..fe977cdee0 --- /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 0000000000..915f8ceb49 --- /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 0000000000..ec6d706156 --- /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 0000000000..bdd263031b --- /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 0000000000..8cea958e3d --- /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 0000000000..838e76474f --- /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 0000000000..487cb5f886 --- /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 0000000000..ff2efbc2e3 --- /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 0000000000..6e558a7ea2 --- /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 0000000000..d6261f2440 --- /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 0000000000..b56974f3a8 --- /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 0000000000..ef74459749 --- /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 0000000000..3a4ba44ac6 --- /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 0000000000..fd246e8f80 --- /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 0000000000..273484ea94 --- /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 0000000000..b521d83d35 --- /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 0000000000..db825929cb --- /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 0000000000..4ba9e24406 --- /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 0000000000..08aa01a140 --- /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 0000000000..f54469d2dd --- /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 0000000000..64c069bb4d --- /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 0000000000..6375689f09 --- /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 0000000000..416a752033 --- /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 0000000000..3eedfb5f94 --- /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 0000000000..7cc57689e1 --- /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 0000000000..b65f602956 --- /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 0000000000..432bfab989 --- /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 0000000000..2a8211fbd2 --- /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 0000000000..b1aaf71133 --- /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 0000000000..5bcc8f180a --- /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 0000000000..363c71c666 --- /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 0000000000..94e498936f --- /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 0000000000..ac000e2907 --- /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 0000000000..218cf1e973 --- /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 0000000000..329512899c --- /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 0000000000..7ec6217e9b --- /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 0000000000..56e374ae9f --- /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 0000000000..875fcb363a --- /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 0000000000..116b34a5b1 --- /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 0000000000..cb5a289613 --- /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 0000000000..89dbbdf369 --- /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 0000000000..05b2104e3b --- /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 0000000000..2930474c64 --- /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 0000000000..8acfb01fee --- /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 0000000000..97b3fb0ab6 --- /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 0000000000..2ea8906e8b --- /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 0000000000..8ef4451d9b --- /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 0000000000..04e412b668 --- /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 0000000000..3dd8c3bb4d --- /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 0000000000..6a8cb8d7fc --- /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 0000000000..f3e27441fc --- /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 0000000000..7405b996ab --- /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 0000000000..eebf22eae5 --- /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 0000000000..a66caeddc4 --- /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 0000000000..dc54926881 --- /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 0000000000..f410e3cdc1 --- /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 0000000000..62a49bf8e8 --- /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 0000000000..25c40089e2 --- /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 0000000000..325092875d --- /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 0000000000..56526a852e --- /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 0000000000..20279484c9 --- /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 0000000000..663792cf25 --- /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 0000000000..7b04506e7b --- /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 0000000000..da484957e1 --- /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 0000000000..75de22f82a --- /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 0000000000..499743083e --- /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 0000000000..f8f853d5f4 --- /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 0000000000..8e1e5d7957 --- /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 0000000000..f8d752ba9f --- /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 0000000000..6ddd015ea1 --- /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 0000000000..8d13696fea --- /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 0000000000..8000d90489 --- /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 0000000000..6429d07020 --- /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 0000000000..b1dc9853e3 --- /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 0000000000..c2b229b798 --- /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 0000000000..e7aad087fb --- /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 0000000000..1985645500 --- /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 0000000000..a4d1650fa7 --- /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 0000000000..e0b771bf06 --- /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 0000000000..4160ba9709 --- /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 0000000000..bd9fc67d72 --- /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 0000000000..464f7d72b0 --- /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 0000000000..2665224c3b --- /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 0000000000..eb69695c4d --- /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 0000000000..fba50883c8 --- /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 0000000000..81c84ae44d --- /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 0000000000..2a2d88fa96 --- /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 0000000000..49c13e856a --- /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 0000000000..047bf7e4ea --- /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 0000000000..bd357b1cb0 --- /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 0000000000..c2a55a1d0a --- /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 0000000000..e12951980c --- /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 0000000000..e85c9fada3 --- /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 0000000000..c5e6978163 --- /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 0000000000..63f8a72f69 --- /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 0000000000..94e3bc90e5 --- /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 0000000000..c5e3c0689e --- /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 0000000000..2cac1bfd49 --- /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 0000000000..55295bf7fa --- /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 0000000000..8e7a233212 --- /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 0000000000..f2c539da5a --- /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 0000000000..46d6071901 --- /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 0000000000..f4edad89a6 --- /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 0000000000..04b25885bb --- /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 0000000000..bd6f62e424 --- /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 0000000000..d4b8c956a7 --- /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 0000000000..6573fd964c --- /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 0000000000..6b8670d219 --- /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 0000000000..882ec0e077 --- /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 0000000000..1ff095a579 --- /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 0000000000..2f09b776e3 --- /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 0000000000..9bdc817152 --- /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 0000000000..7c58225f5b --- /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 0000000000..38262323e9 --- /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 0000000000..179501afeb --- /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 0000000000..4249f41c52 --- /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 0000000000..d89aef620d --- /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 0000000000..ff3f1172d7 --- /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 0000000000..d1d312526b --- /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 0000000000..1b7edb081b --- /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 0000000000..0c45e8d45e --- /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 0000000000..3188986e95 --- /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 0000000000..9c95c1718a --- /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 0000000000..6e92501455 --- /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 0000000000..9c1ef91191 --- /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 0000000000..ce41f33b3b --- /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 0000000000..8f0480d71a --- /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 0000000000..5c786de2ee --- /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 0000000000..cf00d82edf --- /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 0000000000..e5a48a0dfc --- /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 0000000000..22f4e9213b --- /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 0000000000..12ee6140f6 --- /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 0000000000..c40d113c67 --- /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 0000000000..79a1f41750 --- /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 0000000000..177bb0a7d9 --- /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 0000000000..37fdfec8b8 --- /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 0000000000..ec68580357 --- /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 0000000000..94240df80a --- /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 0000000000..a21b65914f --- /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 0000000000..e29de870c0 --- /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 0000000000..c0ecd1e91f --- /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 0000000000..3a2957c53a --- /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 0000000000..a8e02fe465 --- /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 0000000000..b3492d190d --- /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 0000000000..c8ae926de4 --- /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 0000000000..e6b68cb681 --- /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 0000000000..bb74a90b41 --- /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 0000000000..0edfbac98e --- /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 0000000000..2d827a5a47 --- /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 0000000000..1c38246b77 --- /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 0000000000..d919765ec8 --- /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 0000000000..97f4a94b22 --- /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 0000000000..cff658745d --- /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 0000000000..f586d94d50 --- /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 0000000000..b9ebcaeacd --- /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 0000000000..aacd18643d --- /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 0000000000..71bd69075a --- /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 0000000000..8628551d7e --- /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 0000000000..ab43bbddcd --- /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 0000000000..1cc89aa73b --- /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 0000000000..78bc0c95a4 --- /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 0000000000..6a439f21a0 --- /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 0000000000..c17520a602 --- /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 0000000000..a5393733e4 --- /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 0000000000..9313d119fc --- /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 0000000000..c97b40382d --- /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 0000000000..1fd6bf6863 --- /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 0000000000..a74906b57e --- /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 0000000000..09096b3b8e --- /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 0000000000..e39e5cae96 --- /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 0000000000..93d5e55a26 --- /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 0000000000..37e9b24013 --- /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 0000000000..ffdd252177 --- /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 0000000000..bf363e24f1 --- /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 0000000000..405ca00bee --- /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 0000000000..bf3e25ac02 --- /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 0000000000..1fd2c12c57 --- /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 0000000000..6da29600a7 --- /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 0000000000..c6e8a45cdf --- /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 0000000000..0fef7a2147 --- /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 0000000000..84871efcf8 --- /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 0000000000..d92900ff29 --- /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 0000000000..f2955d027a --- /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 0000000000..8e6fb7ff3d --- /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 0000000000..79002ff9a0 --- /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 0000000000..9c91bf5396 --- /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 0000000000..05caac9dff --- /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 0000000000..7429ba2593 --- /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 0000000000..5f38a3ab36 --- /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 0000000000..191e0e9752 --- /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 0000000000..017179162c --- /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 0000000000..5fcd2f741d --- /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 0000000000..1105021915 --- /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 0000000000..ba67f87e30 --- /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 0000000000..c1b15be85f --- /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 0000000000..6fff42d74c --- /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 0000000000..baad34f5fd --- /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 0000000000..2bf41675a1 --- /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 0000000000..c6206be87b --- /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 0000000000..88b9ef5782 --- /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 0000000000..5538001acb --- /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 0000000000..2c3b44368a --- /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 0000000000..4cbba6e38c --- /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 0000000000..cbcadf7376 --- /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 0000000000..4bbfc2d49e --- /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 0000000000..1733af3b2e --- /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 0000000000..2fb72cb8db --- /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 0000000000..0cff1068dc --- /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 0000000000..e87d47807a --- /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 0000000000..8ef2cec6b1 --- /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 0000000000..de77b07c24 --- /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 0000000000..b7c7ab0f93 --- /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 0000000000..03d4ec828c --- /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 0000000000..f1ff00536b --- /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 0000000000..91bbf1fef4 --- /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 0000000000..69779fce0a --- /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 0000000000..088651cc5e --- /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 0000000000..fdc3cda516 --- /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 0000000000..0c785306d9 --- /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 0000000000..7ebe0d2519 --- /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 0000000000..1f73380d97 --- /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 0000000000..9f264f1a95 --- /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 0000000000..64f4576827 --- /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 0000000000..e5c4ad57bf --- /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 0000000000..26681eb6cf --- /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 0000000000..a2dab1264b --- /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 0000000000..7609bdeb6c --- /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 0000000000..d99f913e92 --- /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 0000000000..55b9abb666 --- /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 0000000000..5fb6e354df --- /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 0000000000..8f96c31ed4 --- /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 0000000000..bfba307bb3 --- /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 0000000000..ee0509a8e3 --- /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 0000000000..19b336e025 --- /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 0000000000..f006cc5173 --- /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 0000000000..79be361a50 --- /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 0000000000..2cc6cdb86a --- /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 0000000000..f208f5299b --- /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 0000000000..1c9e549ca2 --- /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 0000000000..69a0c6dd0b --- /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 0000000000..8b79ce1046 --- /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 0000000000..9f68a16192 --- /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 0000000000..9b20cce08e --- /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 0000000000..b4cdca95f5 --- /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 0000000000..082493fbd8 --- /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 0000000000..a229081d52 --- /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 0000000000..46e0b11b15 --- /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 0000000000..380c6164c9 --- /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 0000000000..d6c8210538 --- /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 0000000000..f39962e7b6 --- /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 0000000000..c1119e29f4 --- /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 0000000000..70d184b96b --- /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 0000000000..fa40e90bb7 --- /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 0000000000..c29bfb5426 --- /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 0000000000..52a0ace5c9 --- /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 0000000000..772110c6b8 --- /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 0000000000..e01481f1c4 --- /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 0000000000..d98e4225c0 --- /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 0000000000..e446e2566b --- /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 0000000000..4e8d5db957 --- /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 0000000000..f6b7280742 --- /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 0000000000..3b229b8093 --- /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 0000000000..d2da331ae3 --- /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 0000000000..b05cff8a7d --- /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 0000000000..51c6ba1476 --- /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 0000000000..86640e27ec --- /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 0000000000..1bc4a4272e --- /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 0000000000..a6413fdc7c --- /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 0000000000..2aadddd12e --- /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 0000000000..c3ec26d382 --- /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 0000000000..a34cfb6ef6 --- /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 0000000000..5506cddf74 --- /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 0000000000..529bc81ef1 --- /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 0000000000..1cc0f256fe --- /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 0000000000..7344aa0097 --- /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 0000000000..5e41664270 --- /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 0000000000..3b7521210c --- /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 0000000000..a5c844b021 --- /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 0000000000..e05abe5b56 --- /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 0000000000..5f55e2b439 --- /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 0000000000..6225329850 --- /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 0000000000..c871d4c7d3 --- /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 0000000000..0cf411ae93 --- /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 0000000000..0c36754e31 --- /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 0000000000..80b397e50d --- /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 0000000000..0ab0ef0f35 --- /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 0000000000..7cbe9524e7 --- /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 0000000000..ee11c67bc2 --- /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 0000000000..796c396d70 --- /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 0000000000..fbd6899408 --- /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 0000000000..cd2f1658cf --- /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 0000000000..f349e75fe7 --- /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 0000000000..db0cdd989f --- /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 0000000000..3935f785b4 --- /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 0000000000..243705984e --- /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 0000000000..e10eebba38 --- /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 0000000000..f43e61bfc3 --- /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 0000000000..dfa0f40dae --- /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 0000000000..1fcbe6007e --- /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 0000000000..09a6527e3f --- /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 0000000000..991ae8e41d --- /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 0000000000..3ac5fa6ec0 --- /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 0000000000..363aac28cf --- /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 0000000000..49b75760b2 --- /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 0000000000..d8c8a6d77a --- /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 0000000000..9e5d399c1a --- /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 0000000000..837e057529 --- /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 0000000000..adddfc1a23 --- /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 0000000000..e817ddeb6b --- /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 0000000000..9020b3d0e7 --- /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 0000000000..31c0287cae --- /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 0000000000..d8d6124cd2 --- /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 0000000000..380b6ae81c --- /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 0000000000..611331ec79 --- /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 0000000000..7312f60869 --- /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 0000000000..66ce1649a5 --- /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 0000000000..4dacf71b6e --- /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 0000000000..6617610ff8 --- /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 0000000000..ae65fa1fc7 --- /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 0000000000..1579b454a7 --- /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 0000000000..5ce904d7e5 --- /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 03/13] 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 67804796d6..c5fed78ad8 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 04/13] 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 fa493b402b..22c13f75a1 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 05/13] 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 5074671776..2830bde959 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 7492e4fd7b..b61da8e04a 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 3e7ecb37ce..c55d6f7a02 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 8047ef088c..91d20dff7b 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 ba3406048f..7f5f395817 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 28bc253197..0ae5b24ec3 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 3738656045..2b1ac5d6fc 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 bff51d8c29..4f225e2fb8 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 97bf19cd97..bde2160833 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 9f57189213..c10e3a7cd4 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 1afa9311f9..adc205118f 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 470d0851aa..d14bf2c3cd 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 493c7b5a1e..941efe1339 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 9c34a6ba26..b49533a4db 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 4801548ba8..7db55dae7c 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 61954f91c4..20fa3789ad 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 0768560082..3271862fc5 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 4a6888d20f..9addc05f1e 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 359e030d03..475b4a66ef 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 cfa4a25310..587a7cca8b 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 3c36769ef5..81241ee4e6 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 2501302cf6..205e7fdd20 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 076ea3c9e5..8363ee9ce2 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 f00728537e..8a7bcf4804 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 f17011b482..15b029d1a2 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 8d4db4bd50..127a4af289 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 0074570eb2..62895a6e69 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 667583f31c..db6638e5f5 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 57fda9c37f..04dab27a69 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 346bd8a388..a3fd1622e5 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 5c35bdadf8..31bf3fb27c 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 18ea0abd32..a1431b9abd 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 51913e22ef..2f5d713455 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 7c2c93fc18..4cecc80db2 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 a0c6c1db46..172959c3a8 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 f6f1025c77..fc36517540 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 9d1cd22fd6..2d2db3f92e 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 dbdaab335c..1a7e69905a 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 f95eb6b932..aaa97e6997 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 cc8a15f2e3..cbde4f4ae3 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 18721a0bae..3dc63e9d73 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 f44ae7a404..743a8d07f4 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 b1e6085462..1316e6692e 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 adf448c12e..6895448142 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 b7610145f7..c851457f4a 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 4ad3b11e18..3ff178f718 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 834ba57c55..51c4115145 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 6a94cee266..d4ff403b16 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 9c6497ef42..07dd546876 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 d0e552a370..9b50b4205e 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 a0ad3a813a..b95f3fb73e 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 0ca06b4ef9..3ff8395571 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 7b730a2ba1..6e2259e702 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 094fec40fa..9e7e4595cb 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 80863ad7cc..1b3726a497 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 f51939294d..e5415877fc 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 8491d12963..eb74a49eee 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 b44886a156..082cce85dd 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 913d245278..36d81dea2c 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 eda1b1f8d2..34cde5377f 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 5f61c0a661..f56829591d 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 1ca0784333..5ae8d80971 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 e0c6cb9543..9699279748 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 abd872d1fc..254515b9c6 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 45e46dc074..ae15c76e55 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 cea46c02c2..260cd9a80f 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 7995c5cc00..41628262a7 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 ec71fc11bd..52ee7a986a 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 1250fd19a8..fa014fd227 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 fbf5df79a5..54609dd790 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 9765aba378..4f659dd252 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 eda6b9a048..0975d77012 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 5979a63726..86894b3cfc 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 675cea1fde..f42e67051d 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 807f9deebd..cd65850976 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 33d7ec9cd7..6706127748 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 14eb34e1c4..b1405922f5 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 a384061ea9..190378996b 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 08e867377c..027e3f4533 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 198662da55..aec991a420 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 17c380c7d9..5911ea95d1 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 04ebace13e..1ecda4776b 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 2e75972be7..fd764f1880 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 74cee77d51..998fa70986 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 6e487b07ec..68a742c002 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 24b3246441..540c0f06f1 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 41b1928b53..f7e3f948f7 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 5f8260b9dc..1964fa49c4 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 3f3e927a77..ff918ec43f 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 5aa69fa133..08f30dd8c0 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 505fcee134..b33fcf92f9 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 efef948c3a..0fa50916a2 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 74ad2f1af0..d2fb90828f 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 b97e51f885..7b4acc2aec 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 ad53d119f9..1ee8899b71 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 7a45c8cfb2..6f49c56070 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 5b2c9d0117..0cdd50cffa 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 52b7fd90d3..e421b4d8b2 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 5a47256f8b..5cbd54a373 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 904207b0b3..272b77311c 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 0949167980..51100b3123 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 99213b3cf3..a71f06d480 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 5b7e280fb1..84ca4cd8b7 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 732d6ae5e2..9e8c05f4a4 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 6e27711148..b276ab5851 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 32eef816ff..8c497e0bbe 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 847746714f..2a0d78a720 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 4c9b4c50c4..f2d2e54412 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 1914b975bf..d822dee2f1 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 85238b8a7e..86dc879aea 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 c58e1bbb18..e7f17b68cd 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 88611866f3..a6eb460798 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 469cb1f96d..b240152d53 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 ddf6fbbbff..4fdf5d6071 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 3b2ae993c6..3556401fb9 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 97ca904b66..f3eb01b979 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 4fc878f55b..01d87f2dd8 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 c0dc6bc72a..67c82d4688 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 ad774f3ea2..c397adb099 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 2c35aefe9a..53730ef39d 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 cd27043da5..a9d507a855 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 309c26c91a..747a459d02 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 ec6d517f43..418b5ecae3 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 6c88585e8e..f78c95257d 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 30ae167b18..c79e3b65c5 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 7e072ce6f8..565011b975 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 fc837dd438..0f9932424b 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 025864bcd9..527ee24f45 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 4e9a3d6cf7..e7cefeed2f 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 7ca70a50cd..ebd69e124c 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 e9e192e603..94aad4010a 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 c1a462f962..87c8d42782 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 d9fd83dbd8..145474ca2d 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 1b34398e5e..00cf297de6 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 0bcb49452d..c3fd3c7f31 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 a4213ec2bc..ad2a1c67f5 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 2ecb61ab8f..099fdaa24e 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 009d675a23..5b3b8b9718 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 fcc320d8a1..0a164cb193 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 2b67ca63e6..0b95f6c9ce 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 36e0fc057a..253f9a9271 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 7466b1de92..61a30127c2 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 c59aac7550..c8a7a80c58 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 907383cd1f..a8ae3b4cd8 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 ef4428aa2d..b7f01641d3 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 4562694fa3..e5921ec110 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 f384a8ba9c..2298302998 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 2bf28252fb..140464080e 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 6d009f50b9..761755d926 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 67a5a15e9e..f6338c6672 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 36e0fc82e8..ba5196ae91 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 af90300fe5..89703f32a6 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 c4f3b339c1..17efba3c76 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 72bf966162..243c1731a2 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 791627a110..a89688d207 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 07f6581c21..c629eb4755 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 693c040c6a..bb6f0e809a 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 b83aa9ab12..76abec2307 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 2871ed18df..6d16cd3139 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 bc9cf3d4cf..ab37724baa 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 644a06bb9a..bca428882b 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 6d41243ccd..5027d53c97 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 53553e4374..a13066c0b0 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 2ac11d3642..f2796c7ac3 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 fbf0122229..891c9f0532 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 7e46a4d900..5f0c9e91d8 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 0ff2174141..240a280e9a 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 859f7fa9b2..19c78efc64 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 e81dbb0be8..6185e70ae4 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 e3bcd90a33..9306e21eb6 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 337494a569..5a499851f0 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 90d8711cc0..873f77b43e 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 5690b20b7c..fb68cc272e 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 3a52b8473e..c668d1bb9e 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 05c3e6cd17..be0d91b8e8 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 08171fa964..c38706c94b 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 4a4ffe942d..e3bedc58eb 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 9962057717..24570412a9 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 cf3443e69f..472122b145 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 2e417a6b2c..94ce1e2077 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 a5286d4beb..5a959b85df 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 c52aa9e719..e2ec46965a 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 93e5cada2e..d3fe558d8e 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 b7bd118a09..2b623a9f26 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 6a032b95b1..94d073acc0 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 f5603e0fda..dfe904ce05 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 1756d79b6a..3d55da0982 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 a62b264d02..7b055f3e9a 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 eb8072703c..0d06a773c0 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 5e5b5736f9..241da7cf3f 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 3218c275a1..3e71d39840 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 5b54824206..3fc97db432 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 9faab33474..feaa8f7df0 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 5f722ce29f..822711f8c5 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 4003e79f1a..ebc50cf6fc 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 1b5a12b92b..7ead11aa45 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 c8d6f0f281..ac1849b504 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 a0fb224db7..e3e90c1483 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 297aa3c597..84620fdb3d 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 e81043609e..1ffd4c16ed 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 a3fb17d031..d9828f5d60 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 8c942c88c4..d7b5d5b07b 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 45033863fc..be408d72c0 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 47d388f4a8..b3725f9dac 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 a221b9c51e..8e2ef62484 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 867522750f..11f0089d9c 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 dee3ba93c4..3eb1559642 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 c0c9ff64fd..32150b641b 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 a8dfd0a252..3dfe1d382d 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 65156b78d1..eabe2031c5 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 79cea3a2e6..a5dd10d07b 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 4550e7f3d9..7262299d3b 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 72c66fdb5e..5056cd7d70 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 81e566a640..6b7713a363 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 e8be4cb7c2..ac443002e2 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 e7f35f558b..6efb26e6bb 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 8c9afd7ba8..3169921c98 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 988927beee..324608705d 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 588e5eafe2..e01b6a5e88 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 f8ff34114d..9fd868fc16 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 1bf1f5be57..299d6d9e6e 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 96096e94ca..1c12aea18f 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 f2959b748a..824c0c0c71 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 4dace89370..93c8270714 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 aecfaa2582..481514101d 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 1b30c63c1f..99b8ce4a9a 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 6e797ba2b9..a36843510c 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 0aa368de1c..0481dba048 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 4d315f8fbd..175b7c43b5 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 40845cf546..f2ccb3fdb8 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 af21fcf49b..12745a1a30 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 b8d89c2148..0aba793184 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 0ee3f8fad5..6ce23f86ed 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 fb65173158..13df562849 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 535898fe71..9ec080dd97 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 96ccd3d6bb..af709b54cc 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 055e085296..2dc55b3306 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 f643f2e357..47d65ff2cd 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 33b0f6cd55..6be8f18169 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 115832bfd5..360967d200 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 524db76e0d..40c5434ff8 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 967182f45f..fc67aedc5c 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 f3b77cee0c..fc5f53ba0b 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 aef3cb95d1..1f6ed25293 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 79c628426d..924e063b47 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 e34e658289..8b605b4155 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 42125bc398..ae1de6e449 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 be77211196..ca55eca27a 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 fba4a31aa6..3072d3483f 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 c509a2c8b5..15e6faf3db 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 6fa6eb789a..f13e03e288 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 ddcd02a65e..523089e0ef 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 51a68064bd..956e6b80f2 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 66cad29125..eb7bb769bf 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 f69a9628ee..582068d0e5 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 549cd7a4e1..f169110eb5 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 8eec762151..931c5adfa2 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 db0e430e10..198158de48 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 6e747f5d68..073d2255fb 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 0f2c116811..0286146d62 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 531ddc97e9..bf3ebe9408 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 342928a9dc..12eb5d6df4 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 be7bd97541..874d4f19bf 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 d7a31268b7..1ec63aeb1e 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 97accf2bd9..3b215c9af6 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 704035285e..8ff567f2b7 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 9a48b429bb..c93b65ab2d 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 3899cfe391..6d4338ff62 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 9b94b08b11..ebc1647e9c 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 a4817d4972..3319f0618f 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 d1bad5cf4d..aec7543b96 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 3e5025b90f..8030924af8 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 5ba53cca65..5d90e5ec5a 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 26bdf603e4..65ca6aa1ca 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 9ede06fc9a..fa0a7c184b 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 ddc4dfb426..0e5c8e9863 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 dde1c1f7f6..2c512b9220 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 771e699ed0..d8c4eb7eeb 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 c1d5a10525..2a61087d4d 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 27caa321be..c5e0b7c594 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 f3dbca1713..ff1a3556ea 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 a28eb47162..b6d78508f1 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 ba29489277..8bf02084bd 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 2d84a3373c..5a9463c877 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 cdd72e1987..54c4a68299 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 00c50f2c23..70fad50df0 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 42339388ef..bf2f4f90ed 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 a26a4010e6..f141e49461 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 3271731143..083a31fd0b 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 7680ba247d..e3cdd6b2a3 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 8c7b3049fc..157ad16412 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 002c4f8cea..9d102ecb04 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 28bf377abc..f1bd9355bb 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 e19935b5fc..0ac09c2579 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 05465dc16f..58ad958ef6 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 5762a1c26f..e46ad7fafe 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 2fdcd7f4bb..0046f4d254 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 455835f55e..2d8c70644e 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 3691043d93..4344d38517 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 61a147a2a4..b78c73381b 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 b3287611c5..19435f2e92 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 83245f53e8..d37b829adf 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 032c1c6c4d..9f35adddf7 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 039d884c89..be9df683d7 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 7e9a371f85..a840dc2c07 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 7c3e3c14eb..f308c06347 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 c93b5d5f48..96b5b32a55 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 932f1075ad..963ccf8ea8 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 01d1ed511b..c2e6701b91 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 3de48d8ca2..f12a3cb220 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 ecf2bdf3e8..e534cfc9d5 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 1f2a1f2df6..260e8d90b0 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 9f18e8edca..839a09b67d 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 3c220970d0..58b650801b 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 e4129b123a..112b4c241e 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 03aa23c832..94370bcb1b 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 655a303496..dd2b0523ff 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 11929d8084..596f8ca4e6 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 12bdc2ed93..77e2243ee1 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 895ce1fc83..2b87702452 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 a0de45660d..4a912fd0d5 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 2e83ac20cf..52c7884cda 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 b57b23a134..affcbe434a 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 ac6bd8cd6f..3a9e9e836c 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 06822ada36..d45ff4061b 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 54e48e387a..63ddaaa755 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 15b774819a..e9081b6a73 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 071df4cd01..2769d48ba5 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 ef8994d97c..fa0037e821 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 a0a31930ba..e3b5a8ed19 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 97daf4dfa5..96cb076f60 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 5a3583288c..93100f1e54 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 7b9ce0938a..2d7e0e889b 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 3b519f6771..574febfe2c 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 4a98222ad5..de9c990f5a 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 ed157d4ad1..54dea09ad0 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 e3aba242c2..f5faa5562e 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 bbbc1a9786..43c71afbfe 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 7282ef4512..9c8e3a6be3 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 12fb84643c..207657cd85 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 e5ca0aed8c..fc3d885e39 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 5299a8f66a..72fe522e00 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 78d201b56e..45142a986c 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 32d575818a..5b02b5f0ec 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 fc6b85649e..2a90f9f417 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 51300c6151..f355bf6b67 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 22565f7f05..4cae72657d 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 85f9a586a6..7917642eec 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 a6883fa9ef..27e554eec2 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 ce9cdd9933..e0b16e4728 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 5db25a3ce4..bd0eaef644 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 643a048cd4..bc60bfd48e 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 d67e88487c..a0c58eba0e 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 ba6fc04e80..816dee37c1 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 03af38c6a4..fc2fe44342 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 27f629a095..e6b6197735 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 95eac27b7b..5f041a8bd7 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 4aac94849d..0e49c4f513 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 57603ad10d..7eaacab4f8 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 a16cf79f5e..b54f55c08d 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 182cfd3ed7..4e6cb07931 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 b886f0e55a..d5362a0c09 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 d60a3cd815..0167f7a50f 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 0b224887ee..bacb2d1042 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 63d2edef99..74062dfdf2 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 24bb6272a6..e309e33ad7 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 147aa10362..5c60d7adbd 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 54645d3ee7..07cbfbef02 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 818ad7cb62..6304f6f01d 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 7818d0206a..87bf179564 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 ab56af2472..cf22a4ace5 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 a744cecca2..53e79bb7c5 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 d2f00b9348..42391f1d2c 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 7e258ef5a9..c1f9eb7b5c 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 d4ff6f4d67..172a786459 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 782eeaf577..bff7fa235e 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 d6f38a504e..9d715b3004 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 0f2be3b7b4..556a32745e 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 aca2fe6cc3..f473612fb1 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 5ed0316524..e3d20989d4 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 c6ce2133c1..c9d8391ec1 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 588f9968f9..a47528fed4 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 e459275d0b..e9b4cf909c 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 c401909b8d..6e1d37286d 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 df225ba79d..092689e694 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 6e4e5e2a9f..4464dd981c 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 e6324e16f1..bb8e648ab3 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 eb168bdae6..59b1337b13 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 c37e135663..c33d0fed38 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 7cdc7844b1..3046c1dc2a 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 3ead5bf7f5..0dc7d785a3 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 b4ab389c0c..fb0dfbf353 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 68aaebf793..3c0271eb5f 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 cb46c5dac7..3d477637c9 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 5a245f81f9..485058dc62 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 6d93c444ea..6f80447bd6 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 505a67f781..d402a43493 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 44f3ced76a..a5de77c327 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 791926a579..91d64337e1 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 4ef72a5bae..df72f82ed0 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 b287a2b545..c5ae286a61 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 7e4a2a6573..f9c2f51f63 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 9dd6371034..31b47e0fdc 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 68abe262fe..fc1eb7ef2e 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 1dbe2d8127..2ef81f3666 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 d89b6c5f89..d82a90ebe5 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 84e2ac307b..b2f84eacf8 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 46f5b50b8f..1f6ec88c08 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 1527306a48..186c53e59e 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 16bcafbcdd..a9399eab9e 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 3b2f536f60..8cff7bae86 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 23f05f5faa..9d809f4e50 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 33b9804852..a1df68bf19 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 6f2e84e977..3dd5be5438 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 96a324dca8..2564e89496 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 1edad91424..1f412acc43 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 c6d84a85b1..4be4d401ee 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 52104c588b..ea342df973 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 7bdf030f3a..a2598be097 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 90b2a0a0d8..88457a5c1a 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 e19932b768..59a0f2347a 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 bda70e0222..563bcf526c 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 ba5088c3b0..c408004d8a 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 d091a5b294..149a661b06 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 b72e31f7e6..8adb622a22 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 1e53ff86dc..5b90103e9a 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 96165a00c2..c3c506196e 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 ce4f5ecf6e..a62920fabf 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 61dfb1bf3c..65f6e0f658 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 1478dc9140..d9e613234c 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 76c1c9c940..84dc8ab67b 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 007c63285c..2b31fb5dd0 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 610628052d..acb45773c0 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 88d7541fd1..e2083d7676 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 3c2b4649e9..63aa3045f7 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 aa83137cff..1a86273624 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 88cd347a52..0e53ee2098 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 e959ec8ccd..d0216b1a19 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 4eb4a1fd06..d9d1d0f8f8 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 15a95837dd..93c1234917 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 640441deb9..6e15975080 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 5b8baa5779..d72c2bae90 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 600c5639d1..8e8d8fa290 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 f02a42bdaa..f9a01d41b5 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 fc093a6ef8..5b3a35cda2 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 41175f6ed7..42228682c1 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 a27d72b51c..4aafef85fe 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 46c9211021..e4c75504e2 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 2b9323ebec..c50963a9d0 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 3706347153..decf39e127 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 09118fc0a1..0c68b722c3 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 7c55cb2c03..0961f0b7ac 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 3fab45c20d..fde8087818 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 db61507b77..c699dcd1da 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 6654a77b36..cdb1d645e6 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 8b588fc9f5..ca6faf0ac4 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 cc39dc3ad2..deb3802b5c 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 f05d3515ad..8e45e36e2a 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 f99bf1eb8b..988b7f5562 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 f92a8aa5dc..41501a4a1f 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 fdc9a1b965..99d1537dba 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 0d41591373..7e19f11a1a 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 ca22e8024c..76caeeab8e 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 b40a2303ad..e0547b5c16 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 0107810a38..64d8a6cdca 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 493898d369..2f7504d867 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 93358948bf..d66446c570 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 bc5909d5f4..a0b4823fe5 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 4ed0035aa0..90ffe3043f 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 b6597de754..ab9841f74f 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 8ccde425f1..0def3e70bc 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 507f370b93..bc67b1ba55 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 4de40e9500..3029a3147f 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 c31e76a1a3..3faefa4b6f 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 126d6a4277..3c6c1f11b1 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 088e695319..a27f8b617e 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 3f8e7e5ea4..de8d8fb71e 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 337d169b95..e4a6ca293e 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 4e2f95bb88..b9445e6e60 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 9e40fae7e8..352a346fc3 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 fe1b1a5724..5cd759b43f 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 e529e0b4a5..db89ca7a0f 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 5c8a4eba81..a57fb56167 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 c205f5613b..f92a64497d 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 e2a43c6022..9dbce7e39f 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 135a68747f..c04780fa1a 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 ea5ed43f60..7df2aef7da 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 da43227fef..6902a92530 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 f68b1afa53..75f046a772 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 18f02d5b61..6a43be889f 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 748433a809..16c4d9102a 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 703f113279..a3dc6bcf4a 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 5e522a4e3a..195f1e3566 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 8866b5a924..cde1c2b238 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 2d7a6907a9..ad51470e66 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 3096c82fb7..acecd0f6ca 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 7f26819d12..43b3343902 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 e7a12ab687..ca488938fa 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 432fdd2633..0a24b3f9dc 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 ef773bf5c8..ade19ae249 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 68b5022afe..94b2842d05 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 4a15214ac1..b59db7a755 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 a206d2777c..e130a75489 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 23307dc2b2..e13cbac408 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 6c51d88a4a..fe2b12f3b0 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 6f544bee9a..2958581542 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 1f1a155fd2..bb6fd7b36b 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 b18f62652e..a56c346890 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 f55936106a..5661533793 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 05dcc052cf..53c37c0140 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 38bc81b502..640482eb32 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 2a6338fef5..75faa2cf01 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 af4f96d008..7662a7e5d9 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 eab9da5d0b..29907a3775 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 cb3083a021..f8b15bf92c 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 f2ff80f1b5..8ade9a582d 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 73daa36c63..5f704e657e 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 f3221b29b5..2da76e4282 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 c103fcb1fe..9c983d3082 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 ad487e7167..9a5af86481 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 02f873952c..6a45877491 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 46590d78e2..cc4bf3672a 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 878f0ac186..b168f31ddd 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 3b5de1b5d1..5ec3805e0c 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 8ccbd06013..31ad4833c4 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 e15534ee31..1a5a66f207 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 6b33b6c336..5dd06d801e 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 be039038b8..ee20a282eb 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 ca3c9578b0..302e6dcadc 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 715f943fbc..b360f83be4 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 2b14b84753..1dc981ad50 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 dc4a63e7c0..8a3039c434 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 9805d3e62f..581b8de6cf 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 6f1bf14c34..aab63ff480 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 99721355dd..27aa353ab6 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 234cfdc6ea..154b9c0b99 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 3f691e2b2c..e9015b262d 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 38754d83cd..a20a4dc9ec 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 139698bcd8..d63d7fe519 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 c6ba6d5530..7c58dbd560 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 7510cbc1ee..8a54d382d5 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 061875c2b6..be2b4194a2 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 4b9329eb3f..ef5f970270 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 ea743f3ad8..5376e44292 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 b524f18105..837835862f 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 cc952332c5..8360d7682b 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 9d46baa78a..1d1080ad0d 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 d54a09b9c3..683868a57e 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 8c9d43b567..1d3e19b2a2 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 6936f6a995..961c22fc3a 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 eeea221a1f..5adf3cfdb8 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 b29d0359f3..d7ad727fd3 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 5455dbaadd..37fcee4c10 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 95c790d377..2796e8eea5 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 25f5b6dbaf..02bffb00d4 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 4a152b1b5e..a27901ebcd 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 1ce4e30984..e0e980d2e8 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 fba471b5bb..264ffb1b28 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 250ba00a77..25ebe737c4 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 757325f7e8..bd119ed4de 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 c54cb6657c..8a6ea0bfcc 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 9e94845c89..c723d6d206 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 13ace09c6c..93f918fec6 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 e1da10040c..4be9553975 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 afe040a06f..6d325c22b3 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 72cf53f248..a7b1c36b48 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 5988d4ebb5..b8c8363a79 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 b42baa5c86..5d9ebf76a5 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 1015b48ab6..8c7c508bf0 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 f46c04d30e..5a1866bac4 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 4508e3ebfa..f02ed3e595 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 4de58cb0d4..101d7907de 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 465aa5aa22..20fef77879 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 a48928d21b..f623b3bea1 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 b0ff35cf40..fe13ea23ca 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 8734d978cb..1e2f0563b4 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 374b825c6a..e5e140def5 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 82d6ba6a9e..064278ad97 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 0e33275c1a..3f4225a358 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 8f3d967b78..19b02d467b 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 80980ca7dd..d671515258 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 10bc0cafbc..a868de99cd 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 c35b67c089..2b7ab40451 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 abe3ac0601..e671552c86 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 5eb53145dd..c478a7329c 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 3e43e7fd6c..c5e92bee8f 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 994621009f..5ec7220e7b 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 412e75f498..878d0f801d 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 814cdd6bf0..92e5b2d035 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 523d37134b..7c7d3106e3 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 abfada0783..2113794d72 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 432b24ae8a..86775394a4 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 2c3fbf946a..8cde0d8cc0 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 4ead77e046..eb0ca5a43b 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 4c9d05d7b4..857691370e 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 6c912a7248..cf7da57d39 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 e42f2d6712..bd1f38c7c2 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 8b0d0092c0..82c66066c4 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 8e7c181ba6..b4701a2443 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 f45f4970d3..664304d97a 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 c90ed7fa90..f0ae3fcca5 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 c9362e00ae..703a76c522 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 63502e664c..654e15858e 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 4ad1bc86bf..e1d8a91406 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 8bac181358..56537d8e3d 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 faf363da35..90b5486295 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 7dee75867d..e51dd5734d 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 f0cc85867a..2698852c75 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 f24cd6a45a..c02b6c91bf 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 720d06899e..25a86cce52 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 6d8fc87fc1..71176941aa 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 7eda9af97d..705e773895 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 a7a8132d2f..dec0a7dd88 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 34ae677bcf..3be746173d 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 0d8fcd974d..8338fc82fe 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 f7f924cc45..514678f3e2 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 03cbf4f9d1..84804834d7 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 59098ef7fe..96a24c9d59 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 73178fdea3..958465626d 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 97c5812462..d7cf80c5eb 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 05162c95f3..3e40a3d2d6 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 3cd2e3abd1..3cd8b58ac3 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 c0ca7db89f..bfad96161f 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 628c464b87..d02a091e71 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 59392c96fe..6116ec5e0e 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 ecf6db7db2..cc17d69b72 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 ec9d76d64a..ba45e49d67 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 fc276a7f21..8cc00b2101 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 d6cea03979..21611bdf26 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 24288fb098..5e45cfa0a7 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 6bb3b740a4..5bab0d2dd9 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 95b61a0770..2b0b82dc1a 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 7102bab437..d0d3c32233 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 336e7227eb..a4d5b8ef61 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 134bd4dce4..ee4e1418bd 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 77539b13b2..33dfc98863 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 38bee80656..f46b38ad6a 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 4a08cb9841..324f67183e 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 6b00470792..d2c7ad9a25 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 c5fbce71a8..9cc06f0cf3 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 ff1c191a3a..158c8902d3 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 c18085afea..8bcf069492 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 09ae15cdbd..3bd126cd7d 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 8824f6d104..b5da87658f 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 e972c6b46d..7e635e5f19 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 fab2a1f267..0d2f9c5fd2 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 3d727947d9..fe9c696996 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 04681a0f81..ff6c3d636c 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 74670d3a2e..9db86c5e20 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 209eeeee56..7c0e89f110 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 2ec362ddc8..c6f75f2e4c 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 ac01edfbdb..5485ec939b 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 3a30dd83bc..c3623b00b6 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 cbe6d35090..6f82dafdad 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 33c28444ed..28a6428d14 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 df8268b64f..7103a83a39 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 62da8a7d2b..e3091fc541 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 6986206787..91459ee7ba 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 37ea075bf4..a27b6039c0 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 e5fb8a07d8..863da237d5 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 857fbc5695..89495c06fa 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 580a93af10..e2c2cf9975 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 5588c1a320..4c43006fb8 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 517040b079..407d9766b1 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 da906bde69..b08bcaa244 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 5a06090fa5..d86e60c936 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 65c298b09e..9100ab91cf 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 f9ee5d3f74..41e8dc76ab 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 53dae00f18..5e08759786 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 f25ba59749..8005c4afa0 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 4d6d6e2381..815606d145 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 36acabb2e8..b9b535ccef 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 5d677903e5..bc5a69c5be 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 d12383be9d..6b34e6ef62 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 855fcf677c..f7c4ff387b 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 ff447cee45..602f5107c4 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 36cf6d9f81..fcf73ceaa0 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 05073bd86d..a29795a975 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 9dd501baf2..1604e67fe1 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 1d61b3d3cc..7228145f93 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 7a87f50b50..88fd3327b6 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 721ffe5935..08e442f766 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 a3a934762d..7e2302a006 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 cd77f012ff..cbc962fa2b 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 4cc90b355a..2b1c87aedd 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 4a389f6a59..970c828f3d 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 cb05a213a5..3aa1b687e6 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 e21aebf4ca..a4ccc6dbd8 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 fe10370e4c..071d4897e8 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 073ff77af5..7813606a22 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 bd792b90f1..d016fd5c93 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 44dc8d5e4d..f66d2d1ccb 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 3aa83b1fe8..0ec22b5b9a 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 1c356929ee..fd6cd9c326 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 c86a07a84b..fdc96f4cb8 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 e6d9b24679..1a19de48c2 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 90d9b2011e..0e81909664 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 5828ddb4ae..74c66f5fc2 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 c2c5efa453..29763aa990 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 b302ec51cd..cd6cffa0c8 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 bb75c03c4d..21866cbf4b 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 bfbc28a261..767eaefcca 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 5e8d8d31c3..2c03848b07 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 c0d3623ae9..70a7c72f6e 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 5b0803f8e6..a9d2f5b1c2 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 39fb1ff01e..aa47bb6b2a 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 7aa1d7fdbb..9c29043fe6 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 047d9563bb..5bd89b5061 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 a063786191..18e7051940 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 889df94b47..6191902d82 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 3624677be5..cb9aee8777 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 d0768e613a..0503088f32 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 b6021b77eb..6331576d22 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 33c692b6ef..f10036bd73 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 c9be1ff3a6..75f839cb59 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 fe62e92987..ece55be71b 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 4af796ad55..b831741d18 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 09d3dbb2c6..2ae793a2ef 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 d4e166512a..b15ed1e714 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 73e4f6025c..301a173fcf 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 9320f0051c..2b71c01ca6 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 db05dbb4db..f90a7bc144 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 9482bfeb5a..a381c1eb03 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 44b368a05b..8e400cefbb 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 db02b9cc2d..441e655ffb 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 d2f6cec44f..61b9d280c0 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 78d1bfaacc..0dd87eb3a9 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 f28d681ad0..48050e8e98 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 b6d7038ba9..d1e2478604 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 a27cebf56d..a5729ac809 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 4f039f774f..6ccb267561 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 50cbcaa39e..d3286b7497 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 a71aa08daa..f9b1ecfc92 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 76999839a0..d918687617 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 f6ae534141..8282216e2b 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 3504940ff6..5d2bd7fe47 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 fd9dd81275..5003ab6cad 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 497d0df5f0..9c8addb27a 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 7a5bc8fb48..788a2d860f 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 fcdf5d48f5..f8285b857a 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 676b88ead3..063140fa31 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 830b334717..c771d0bb17 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 9237fc54ab..424c2021fe 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 7212bc60a9..9659496cd1 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 30447826eb..104e62344b 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 c3a96f74d9..c6cd3ea490 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 d6eb20ef03..9bbdd38732 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 a1fef9276c..a9472c4f19 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 80b4523ef5..eef4677189 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 bb0a2a3305..2f2c583fc0 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 a0ec47dc40..758d29c6cb 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 b8753c1a48..cdb56107d4 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 897a7db019..e69e3d2774 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 ffa7f533f3..ea403cdee7 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 3d020e029e..406026a34e 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 47cd9bb779..9aecf747a5 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 b0ee8479c9..2acd20821f 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 db2fb8e6a5..7a22ae97a8 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 a14089b088..bf110abb67 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 866c94648c..c7bdd42b13 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 58372193d2..13ade5a8c8 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 1794900504..cfcd8c5864 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 583635af1b..9e59f1dda7 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 5c3cf443b5..db3dfae407 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 de59f05bd0..aa6182ae01 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 d97fc74c38..a0ca3570ac 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 1c71708895..c36cbf4daf 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 afaaf8030b..54ce7fea39 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 c9030ebac9..3a7459054c 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 68ac9a5863..31116642cf 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 84225b2c7a..2a9084defb 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 856eb1aae7..261cf7dc0c 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 eb3f8ded5e..bff5cce20e 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 624f622a36..81a5baea22 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 7da6767fd7..d11f9426e4 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 21ddb2e287..52eb60f4a2 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 956f5fb5d1..66bc7bb16c 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 2d13682d71..c1584cfa21 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 ae9572830b..e43f6485ac 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 597b13c415..f56e863822 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 5fdf7c1e75..3f117a09af 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 a4a869c256..ff4e7cb8e1 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 241a600fab..85b5d8f00f 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 dc8a40c3b2..ce624183ec 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 0bc9542e66..09ae27bec8 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 d862f07fad..baddcf3410 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 d386a7f4a8..412c118c3e 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 9890700e03..fee45e4ed9 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 c92a9fb9c7..dfe74ac69c 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 4f65546d1b..7773eb370b 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 aee20d3312..3a529e78fc 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 7930695b67..4867da0a4d 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 cd8dba9bfa..1c3cc172c7 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 ad7b7edf7e..59e5871201 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 51ff02d916..f3b32ee773 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 c57495ab2e..7219a8d623 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 c3123dbe86..0a1dafd5ba 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 461283f4ed..d835d048f0 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 6c4019853e..8269c06afa 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 16c1f77b79..5cad4285c9 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 70cc3eb195..79ddf5c584 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 1f2bf8dd5e..98f0bbf0aa 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 dfad4d607b..e61f14a8ed 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 1ad19fa5ac..8a20ed5c2f 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 862ee224eb..b4c3022a62 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 0bdcb53014..576c0841e6 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 06cc9ce1a6..278567fd84 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 cf1fa10b61..e30780bcf5 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 5fa9d02879..c43b12a6b2 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 b444063aec..b2f369ae97 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 b5931bc65d..05716c7478 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 70ad5c9af8..1837cffda4 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 2573c90257..22f9856cfd 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 d601974b91..64321d7c19 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 1c2155acad..fbae7e5a60 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 244a2f83b9..4c23464bf8 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 aaec0952e2..96bf394984 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 a09ee42ede..08a54444ac 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 cea357a348..356200d3d4 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 756230f73e..81f0cc363f 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 746c962ddf..07140dff06 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 5da222f467..cc82cf4393 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 4f255c96e5..0103de190b 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 ce08860da1..08676def84 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 0ea3103d3c..4cec2d5df2 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 618301fe81..3bb1d18f20 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 cfad01f35f..c99b528c6c 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 e122317ffe..2297d8906f 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 0dedd58eff..8958d76f9f 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 b1822987de..bcc70902f3 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 1274b34c12..42d4e04c2a 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 442e7e321a..5c2710f0c6 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 8d3ef3ecac..751301e363 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 1a9f709388..a03fbd3d01 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 7f4708a92f..f1f44ed044 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 ae4851e96c..fe70ba8c25 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 e25db98d72..0b94ef3756 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 dd480bbbaf..e12b4e8a94 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 48663d8748..5e03373a94 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 323670b515..191c04639a 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 8446a3fbf5..699d8d57b6 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 a006e6e9ea..558a58eee9 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 7c72fe89e0..b206e8dad3 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 4d9f64bf23..93b567524d 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 529c4e9556..7e54f99752 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 99cf886aa0..3cce3cfc97 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 d8e04b1a16..f43373b563 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 85e145df54..e01fb23ae6 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 faa2b3d155..0cd20eda8e 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 2fe81a7524..982ee5c568 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 9e3b73b309..6d313e398b 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 404de597d4..a2ec24bfe8 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 9edfc4a9b0..a402da2ccf 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 9e4423f74f..c186e98263 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 350375dea9..52f4f86f3b 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 09993347e5..519cdd0db6 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 35eb106eef..7d7e9ea987 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 fe5e7f1429..e030605c7a 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 607c6cad0b..b44b952d81 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 e47bea3c3c..c096429d0b 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 6da0879669..9b823f8fae 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 63ffa80e65..b45f9f2bbd 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 c29edf0460..a5dfdd1a8b 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 e47f62b8be..2ded4e98de 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 a70e851d6b..ca402b4830 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 a7927e7edf..319b2121e4 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 f41c7ae9cc..e0eebf72ca 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 c629fadc99..d14196fe7e 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 9617af149d..0d0b25ff49 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 4f11521acf..ce14e7b9db 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 51772b04d7..dd81069fbc 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 a094772c55..75274cf50d 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 cd6d7a6937..57469fcad4 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 9bf9c36251..413a9f6aa2 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 8414939608..0d472725e8 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 f359d0efec..eb8780f518 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 1401a13747..c8ebe12201 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 02570300f2..86fe9c3443 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 dcda5bb6e8..1fde0ff1bf 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 34853bd8ba..572161bfab 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 9525b15f3d..8cfc861832 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 6e5154f1a6..55f2c504b2 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 764b99c260..4e23a5891e 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 f2fc43d74e..cf516882be 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 98de049a7d..8bdb9decb8 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 98c32908fa..e73b42ed37 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 04182ca35b..1ac838e185 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 cadf1f9964..201ac4e236 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 f577156d4a..8375438010 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 8e66e98630..44c163816a 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 ee0d2dfe06..9bf692fbd5 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 51ad380366..03c789d643 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 98f8b9d870..9d32dffa21 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 43df49a3a5..33c6c16fb3 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 a0f9f36fcd..adba496ba8 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 465ccfe1d7..d4a38ab833 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 a27e178a15..b1e82ecf18 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 16d0b24c89..9ba8e0b43b 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 03d129d1ee..9fe7da30db 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 f6c47ac11f..9d32696182 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 029672841d..4564abe728 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 a7704c383d..c1b0c9d555 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 db1c920d71..b1e3c1f385 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 d917f61a45..35674571f2 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 66348dede9..99fbe4130f 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 dcfbc762c0..40bdfa739e 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 0c0c205069..f3500fdeac 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 723633b685..1733c3e2ac 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 4a3c49d028..7d2aaa4480 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 6facf4e824..3a4d51eca9 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 a7cce88442..da3caf8802 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 f2fb6aa7be..03395ca6dd 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 90d58140ac..5f5a0b8dc4 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 08b13ee961..acd53f170f 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 8da84cf707..4233dd3077 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 2642882693..b8e7c47831 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 ff53ba39c7..46bcaf17ca 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 1fbb9c31db..d616f47c23 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 7dd21a08b7..126283084d 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 8944d53f2d..dbd2b9a217 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 88308364f1..2f1d59dada 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 f6b05cbc89..43216578ab 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 df3600ef8e..c23bb53844 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 214da14629..9a7b576d56 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 7a8ff5fd42..dc98df4788 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 798a28cacf..de8ebc930d 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 cad968d056..a7bb64b465 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 4483a41f25..b28d14efae 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 4bd79117c6..1acd127649 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 38167a9c88..ae730fb12c 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 bf00a9bc14..06e86bc750 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 975581e22c..8490f16883 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 6d5b160941..3fbebb9a13 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 19fbf97a36..2dbbe848ae 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 7a58c7a516..55c9f4e4ea 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 4428e2d33c..3e27d3e476 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 b027e15f41..434cfcd131 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 6a6141239f..74dd8db258 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 a2f823b5e1..5ff2dc8f11 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 fcfa1c2677..8f1d0c9f6a 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 50676b93ab..8eaa2ecd85 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 0f65435bd0..ebf499e2f7 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 c77a892bc5..d99b839073 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 a22443a331..0f5860a39d 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 23017e1896..f03418e216 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 bac7034581..b3dc8baa26 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 66db11da2c..8a23fe7914 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 fb7ef7942e..0499bf0c9e 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 5752134c46..62c747eb92 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 ee724037b7..8b2df0d721 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 c7f6377a35..4cd8631cd2 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 688fac4fd2..bf99ac7c47 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 a90a2cf6b0..848e66ee02 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 25742449b6..1916c9ac17 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 f402c1a69f..d7c777af02 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 2461fadf3b..101ff9e007 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 b382aa9199..6f78c73399 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 9401cbf066..723ac69471 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 3cd9059897..c4e11ff891 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 fc03e6871e..36bd761ab8 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 87d6d8f2b1..08a3c37004 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 765675f1ee..d41ca542d0 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 b029599978..4be6321cba 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 34b611795b..bee1f21378 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 bf4e10f9c9..7835fd625c 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 beafbde27e..b7ba4da8f3 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 5081ab9bb7..4145977075 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 289539a2c8..3193e10243 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 b36b0b6a41..fc817e2cd1 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 eba998e242..883c65b8d4 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 0c775296b6..732bf92ec4 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 39b6da77b5..91ddfd383c 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 9885d85602..9f91f99e12 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 4b2978e3a2..e50f45184d 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 a5db24d870..e9907b23c0 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 f68fe0bbd5..518623017b 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 b867a77901..84a0731637 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 97d735fd5e..e3f8f22987 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 07e1e3f810..b2c1b501b9 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 91bc92a2f1..2df652068c 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 798a891cc5..2efa0d3e4c 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 3d8dc7142e..ea0e940b8d 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 8145133c76..0db0ebeaa8 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 33c96aecef..116ea8478d 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 97632f33ff..5d9732ac35 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 9823386daa..c4fd36af27 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 0807ad29c7..d48b5d27b7 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 7050e64107..82a54244e1 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 840d152bb4..92e7b5b604 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 f62e4aaa7a..258279758a 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 e5e48ea43a..45bfc2c5e6 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 94525c3046..5e4c0e0b46 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 5e2a96344d..fb8baa9063 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 610f2d8200..af8110be59 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 0494dd900e..ea4df1b725 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 05a18b8838..9d80d1cc11 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 649a800c93..c1e07a329a 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 c5fcb8f337..532e186333 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 8016cc505c..5db93510a0 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 252750eb39..150a1bea82 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 49b2163003..fe0e664e3f 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 59dfe2fc71..814063f5e2 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 068c222b2a..0887c560f1 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 b4073e0b0b..00d6cd1693 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 04b3d6e760..54d554ac76 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 19fc2a5786..81cec64298 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 1f47495a43..658faa9cf4 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 4ac2cd11a8..553d972085 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 eee1e4a8be..8fab6ccbac 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 0fe2a3ea97..ad5f652985 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 37d80fbcdc..0e032ee752 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 c04a6bc093..cf51d92ca2 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 0a2c0f94e5..e6790e060f 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 c3530753d9..405fc23036 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 fa2059b28e..c5df6e7f05 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 cf2aff41c5..aa304f4ab9 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 71dcf5f680..8bffe73f09 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 39a4210f5c..6ef5609bc5 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 728a5278f6..c8b69d4dcf 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 4b943986e0..67f3e2f0f0 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 853aa960f6..98b303f292 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 07c7f833c8..53c08799ec 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 fc0a6efada..430218a19c 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 e2a08f4364..470ff179a9 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 fcd3d72d75..76b5817806 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 3176f5c9ae..286fd26bab 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 ae4c7abbe6..9c6d8c6f80 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 9ab5d360f2..925abc3a2b 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 80bd9189e6..0914d6000f 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 d297c53a25..c6ae113edc 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 4a6e8bfe14..ef8eb77880 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 000b82f2fa..e2744c6e63 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 866ef1d399..3a572b7e31 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 dc0699fce4..c91e0c9c97 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 6d73276297..bb453c679f 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 f4a7287cde..840e3f7ef8 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 197cce5690..cba080146f 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 5110d4b761..7b31a4a0d1 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 1257f3749b..2ce7a9be83 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 ec3bdc5441..7bdd9ac682 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 d478426187..743faf8bdd 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 690e11c5fc..90f6a90344 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 66a7d539bd..089587ef27 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 c39206d4bb..1f6ccf6de3 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 d0bfe9301f..8bad4c1618 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 fce061ec02..ca0faf292d 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 415810a8ac..f05447db2d 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 f6bac02719..1b3dd1faf9 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 a17572fde9..9e1ae0cc4a 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 397b866155..0fec62cfe5 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 d858de2ce0..30ad23a76a 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 36673cacc4..9f1f886fec 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 ed0929008b..623fd7accb 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 98f55c0493..ad9bc5dc2c 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 42783e5998..be484addf7 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 8c2641f2a5..af78737317 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 4f0925dab7..5aefed391e 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 15c0dde8d8..7328484488 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 80f5612345..00aa24c1b2 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 b828c28072..57d2be7675 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 03ca23886f..a85cea6ccb 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 8f000f3ede..0c7cb27104 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 2776561ffb..55c2c1797f 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 b055249f05..a51e696538 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 01206240d6..fe962cdf89 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 453f900d60..f13bb7c22c 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 cc064d5786..98e880b7e0 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 089252f3e2..bc5858a3da 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 019c8f0a38..1e7d1ab404 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 0dafe027bf..ede49e7704 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 fe2b71ba7d..8a86e8cd6c 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 3b02f79b1e..515e73db2f 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 30671b4fc6..d930a36549 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 22a94cc649..ca03de4a84 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 b055d221fa..1bfb820b57 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 605f940d23..75c56d00d0 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 d4a26f8bcb..ea843e0c88 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 83e02ed867..63546762ec 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 a050370546..dd8f956d2b 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 764646e15e..cd603bbf89 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 1056efe88f..02e616c2f8 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 e8d0da7fed..d32735a2e1 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 309443807f..9a0c707b80 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 ca324cd705..1b5f24109c 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 a5d6de9043..5a505fddce 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 da99b8d1e2..cb5f5500d8 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 4f24b96342..4d4404f043 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 01ff55d8f3..37dbb1d8a0 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 a78c5b6dc3..6c7873ba3a 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 376eec2a5d..a95ba0fbe0 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 dfe9ab374f..373d326f7b 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 16bbb68aad..287ecb6ee9 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 ea22923ffd..eb71358747 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 a9cd92b237..af899674de 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 f84fdcbb07..8575784f03 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 888fa793b5..ae1af62dd2 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 131444feaa..b9cd47993c 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 be397e5f71..91c786eb12 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 7f394a792e..644fb227f5 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 781d03e115..2e49353130 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 6fe42234c9..c08dc4c815 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 a7c61aa938..13915f2c76 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 4dde9fbd5d..0ab00bb809 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 40557b2f29..b775024c8b 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 6bc910eef9..6f5c91d516 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 4fd7b074b9..31868b5bab 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 900705cae3..c7121803a2 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 90255cd796..190388a843 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 33935a1ff6..4b81058375 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 edd241bca8..6fb84770c8 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 39e938c48f..1a4dd8248b 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 f054bf60af..365b32471c 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 407b10f7af..4ed951b731 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 a83b5297a0..5535387e52 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 d54d29aa03..471be65542 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 ea7a08dd9a..3711cd39ed 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 d1d3389d75..7d26104b38 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 48d1e91afa..ad90f3afcc 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 bdf27a6bf3..f8bd05fa4b 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 19494f47d9..5af519f4ef 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 b5a8251030..b9bf5da727 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 818d38e20a..c0badbf68c 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 30e565b664..2d5c16d336 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 3ff2c16b9d..37edf3b5ca 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 186b8abd3e..af507c4731 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 2cc6e1f305..c51c41e1a2 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 1c11e52cea..18221dd49d 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 1ef75e88d1..cea2e0f7df 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 be28366a30..9a220891ec 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 488ca5cde0..da01410c01 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 8a5a7f3c1f..f97df74c58 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 0175817155..a53ea675be 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 4dc4609ad4..05e4732450 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 043dea1084..c5f3e824d7 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 02e9d4082b..f6533f020f 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 5677d8ca25..364eb910c0 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 300b4ce847..73e4525c39 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 6eecf98ccb..c9feb0f17b 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 b8303c754b..7f2ea26ba4 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 8770a37f0e..99e1201fce 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 df03308b73..9a7130fcee 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 632620aa4f..448ad89668 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 629d5091b0..94a37f0223 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 466561b138..a1d4af50f3 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 98fb1c6771..28afd2368c 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 d0c54be14f..9cefdf69b6 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 5a249edc73..443df1a72f 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 75e8f1fe69..c5742582a9 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 8445b42b34..4f1d1d3c8e 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 67b1c8752d..017cc491da 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 d79104eb9b..0ef10b4228 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 47552d4b08..c563a7b084 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 abee3c725e..037613b121 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 1ad3d3cbbc..64a8822c87 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 08fc89734d..455b5d2821 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 f9e57df03f..2efc21668b 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 a37ca5e1db..f01f8917c9 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 e49c2817e8..ebea6a8ce7 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 643e3c477b..3de4e2693b 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 97b077c4d3..18eeaf3140 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 3debbd68ec..1afb69d316 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 aa4606f82a..94a6bcfd72 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 29f9bc9258..44ea59c4db 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 f308095b3a..08396c6c7b 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 d10cb7920e..869340e6af 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 1780c590ca..2f691c65fc 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 cb6f5ca280..9795623dbf 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 6cd3f662d2..bbac3b93ae 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 a11369fa95..b261d102f6 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 a999f1c0ea..403628deec 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 0fd5664b4d..d44e5cc7f7 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 c74e7ad3fe..873262d383 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 a5b458f160..875c35364e 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 e0862a5ad1..e5050dd05a 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 863149a655..367ee1e58f 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 9291b49afc..79f378b748 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 784f7a5b85..01de8161e0 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 7997706fc8..4f41a9db53 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 f5b3d2cbb1..732cccdcf8 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 57be3a23dc..d355dff9d8 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 71aea21922..9ade481e3f 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 eace648a9b..37bb71f3ac 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 d93b9aed91..11b521a785 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 f0f4c351f0..f872074c28 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 9f21ae8531..c4e0bb41a4 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 7f86542629..c082aeadc1 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 b288013633..da0afb3837 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 e72a3c97bd..cb5fd7c51b 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 88ff9e8acb..ea6f823744 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 de1b76c953..9d4b256e45 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 40f7c54d66..811f0c858d 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 4a20f89e15..3f61e51772 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 5317593842..18fc3fc56c 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 dfb9f83d8e..66f4ae9a19 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 6bc9578fbf..6d38cb806e 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 cfd229264f..958500818a 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 5bb89a216b..d98f943f2a 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 3d2cd700e7..a2779a83af 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 c97fbf051c..9d7b2a85f3 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 8fe50c6071..72cd079eee 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 4c49fb6aa4..f82db771a1 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 970cf785bc..76b0e71a15 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 04a54cb75e..2b38b14655 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 bc428be5bc..10d2f274e0 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 4273262bf4..5af5824eb7 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 c752869d4d..a28536fc71 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 b5b5301bf6..7eae4fbbc4 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 cb45fae93b..8d66ce4819 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 c74a3404af..c8e4a78a69 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 a94d745a4b..06765b5557 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 612f32aade..db95bd66d8 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 181960ccc6..17ae75befb 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 92232cf745..e44f5f82c4 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 8bf3d5db54..4b6ebe62d3 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 440aa21529..a0baec5ecf 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 b0b6c3b87d..5294413f92 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 fa19503419..81fb5550fa 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 64769353e8..b0544b0cf5 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 f457fc72fd..827eda6651 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 66757db013..d73e75efc5 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 93ed03c575..32ddfada4c 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 44b4c91abe..e5ad4935bb 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 c7fe1c7b85..54c4904412 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 e5c085f4ae..6d7c780bd2 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 549a4e76f2..d67aa5b2e9 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 ff2feaec54..2eca062942 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 74b9e50364..32a94bda59 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 4714815a6d..d1fcd71efa 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 32d3f8c933..7a92cf311d 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 b38faf43b4..a5eef4343a 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 43ac486e0e..430816b7d2 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 34195132bc..7a067e2c8b 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 a358f09dd7..06f1039d7f 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 6f2837f4b8..a7f43c66c7 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 905b01dcd1..9464bb5aa7 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 cd7c49b71f..49f925c079 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 ba380d5e15..434b99693c 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 8711166225..22f9d6e444 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 c137a9b1dd..652c8fb5ac 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 4662659d8b..11b29aaa07 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 18f47e82b3..276d278f18 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 4a97d56f7b..e484615557 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 1f65228d29..594624adaf 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 0f79b35899..333dffef1d 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 3171f95ee3..874a870be6 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 10f154f904..1322806024 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 683eefefdd..0722f4d637 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 200578d1d2..b9893f3cfd 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 6211acc53a..0dea264eb0 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 000945a55b..baccee3d46 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 7fcc898819..ffc0dddc1f 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 480ec44927..ded004379d 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 fadf7fc869..35531da6f4 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 a2517d5877..8c0a71ee5c 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 727790e6f1..8f98d05c10 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 6d45706828..2082fb04f2 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 2ee687b56d..3eb7446df1 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 8e5b569fae..9d52b86134 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 90de5340cb..4d5e5319dc 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 b6fa1cada9..ee9d795713 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 0c47bce7b1..96c1cf6671 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 c623b26ada..80fcc3201a 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 ec841826da..728a8d4489 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 b9a3a3a839..71ffefd377 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 f57c7ffa87..4f415e4954 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 3c7bfba879..5328ff879c 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 b1e550b119..44dfdd8bfb 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 ec2c68a651..e2d99b722d 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 d47930b5a9..b3e38ecafd 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 c9b8234cc7..4031d1780b 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 02beaffd62..eddfd157d4 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 29c2d9aed0..336e8f8893 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 5e1df5448d..778b285f5b 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 628ba4efef..fb2d679399 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 dbb43f76b8..2108502b75 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 7a7100ac4d..686446f545 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 df42751d2c..7b18aa8931 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 6e80074970..44f3440c55 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 282db7b152..333f45d031 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 be9a8be092..eda72be8d7 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 b939cc02a4..953ea80f71 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 9d338ad9c7..32fac499da 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 aca7fd3fea..9191fcbb47 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 ce0c438fb3..346a82b831 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 759c2460f4..6d8f22845f 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 a75a9f4599..01defe656a 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 592cd8dda6..be951b7384 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 a15155cf25..2b3bdef8ce 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 f237b21633..d9ddd7cd87 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 e8eaf7ed8a..766c476ba3 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 b2eb7f51f7..f65ecbb318 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 3d35cd1914..670d958da5 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 1a3841d2b4..2dbf7b7d0a 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 5d55d05b72..65ed1713cb 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 db995b84be..791f609a77 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 1b84d31d8e..184c208c8b 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 8bdfa34f2e..50841e72e3 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 5385781c3f..627c0d3523 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 b3d81565b8..78e630d5a7 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 8af6b4690f..7a72b2b958 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 d1aae5965a..8b3c090f5c 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 266fb6d752..05c04160eb 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 5f283a1bfe..92d88b8d03 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 a8fd7e5022..bd0b0deaa3 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 86452dc258..d85340234d 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 805b39e9ba..43804216ae 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 72bfd7ef36..f1aa598ccf 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 a67ab94de3..0aa1dfa06e 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 badad85139..3fcec562d9 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 457d50b9cd..f1bd447af9 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 dfd1b08874..8a26343d58 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 3e2231efa5..a00fcfc62a 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 e35afca0af..1d637405f3 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 ebd5425ff0..d1d611fb10 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 8eeb2ee696..b730c35227 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 3b9f00d1e0..0bdc585c1d 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 ae3fdf9d10..b5fc797a10 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 284282314c..bf8a562624 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 2a5b18c312..b0fcff20d8 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 a9c43a26e1..a4a26ebbaf 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 f76be86612..a8376da546 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 d60274bff5..3091f4b99b 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 d26ecbb29a..23e8efb78e 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 036bae70f2..e963179b9b 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 82f270884c..44d3c86691 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 dd946c9fb3..9addf24b7c 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 6c52669465..8bcd5fb60c 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 bc87481e48..513d69d5f3 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 f36da27227..eb45e524ba 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 fc1947e49e..1f2389cc25 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 526bcf44c1..dc80df2b23 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 950663b70f..a98d21462e 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 33e079123a..3f0851a2b8 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 f32a0c20de..b2de37c3ee 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 d5615fc7a7..e414e60b5c 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 e11644b010..b5452fed92 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 4da60006aa..01cf3fdbe0 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 6d8af1a7d7..cf7b955d4f 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 290333d7e2..f76611d73a 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 758d9cf4b0..6291abcac1 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 c4cc5482a2..b23280c2dd 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 dbc377b4a1..84d23bd1f1 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 146779d48d..e3f1d5dc08 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 9aeb0f9a86..ed0eda7b9b 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 93f7509627..5c9f9e8694 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 79fedba011..52c10ebffb 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 3a61f23124..74e2190411 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 637df5f523..9d2a106849 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 c1b72d75ef..9bac256a29 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 a66f1b6a6a..db560710d4 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 e5e708c269..9bb21ccb1b 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 ab80b22d13..27b59d68e9 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 2e5429bc04..a40e767659 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 5b95d4e32c..41e7a09c1a 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 4c9d94af60..9fa56b35a4 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 c068ee673b..6b94ab5aad 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 fcdb5b872b..94cfc683b5 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 fcfa11be5e..5a330cc00b 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 3122414f36..c43e7afe67 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 02a15370dd..3a654e0715 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 361eaefb3c..e2d4093952 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 3ff43a785f..938a154719 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 1879bbf661..7166d176ff 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 02e623e24d..09c2f9254b 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 6d337b4fad..2cc0ceaa57 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 26409e7d17..b9e214aaa1 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 6fa6d856fa..87652bb3e1 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 4ce0f482ab..17491706bc 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 f8f3d3fd3d..051f0f22c8 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 27e5452cf5..8079e249b5 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 e46c4ce809..e25362693f 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 d2398d5510..317f248d1a 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 65acb06f81..34e3b14fea 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 002fc5c7eb..e6ab09b56d 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 b9d86185ed..c7a7e7c59f 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 312dc01c37..b11c8f4f74 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 8ee684c249..586ba7ce2b 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 1f9d91bf2a..bd1d4f4fd8 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 d716b81942..32b90690de 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 5c419cbffb..e8e6f9f44f 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 3d6cf23242..adcfda8ca7 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 1b04e1e73e..a15f6c27f5 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 0ef616839b..b8d45f8584 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 26f5b3f126..507ba3358d 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 0e957b4ac7..255f046c9f 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 1e72aab37c..a750c65797 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 68664acb8d..acb64118af 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 55001f6e67..7ae6b019b9 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 d9d7e10f1a..4a441741c8 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 f6815a5fa1..1a69e5ffc5 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 246fbc7d0d..113c332769 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 8694e3e7fe..e39a6ed39c 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 28bb30fffc..dba45d0e6c 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 db5902b5a6..415a087dea 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 cd9d86985a..65c69643f6 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 ac4e6b9ba8..3020c354a8 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 ba6ea17df9..501a777145 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 171ad9ecda..5cdfdcedd6 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 6f012ff286..9af31e9525 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 aa13d87b8f..dde33f020c 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 8a717be16a..98f0fe3735 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 dd7a005df8..0668bb87e0 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 d5dcf1620f..e988f28824 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 ad8f5438b6..61bf46e92b 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 6cbe55c5b9..d40b109843 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 4609a0fe3c..f333651bdc 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 6b5394b979..c8cb24d455 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 89d90088ee..24a3994db8 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 608b84f8a5..46640704cf 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 b725f64372..af6aa16529 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 8b0ce793f8..4a96bbe648 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 dfdb2da6b2..81787f430c 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 cd97845ce7..4503030630 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 efe459cf42..50fad3ce2c 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 6000448100..c589f6e39b 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 c516ed9dca..78448064dd 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 dc5bc3dbfc..a8770bce70 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 9280e18a60..23502befc9 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 021a588776..74909d178a 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 1c2ba19995..fb513d414d 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 6a2129b957..9b11796327 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 29be2238f6..5f20595a6e 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 7390b2055a..dfc5c4233f 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 a789bbd51a..b6164256d6 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 b636cd384b..bfd8127b80 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 a5defe00e2..7661885aab 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 f12424e3e5..c5742003e4 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 934822584e..930fc3e818 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 dcf7aab16f..9f63314007 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 3d536ebff3..d7343bf043 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 74864aa412..3424d747e6 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 59ea2d8033..f1114be997 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 cf210f855d..ca0383b7db 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 5b13cb67fd..439bcd167c 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 643bcb651b..9bdfd0e0ba 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 e0dfb43d8d..9153bce4ad 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 18b1a19ba5..6ceaf4c700 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 781eb37580..ba255b42c7 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 3b66d3ad15..7099be93d8 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 0d20d06fac..a735ac14f6 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 712ecd9ae9..c8c5ab43de 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 b391a3b703..c32ba43c80 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 b8b278c214..fc4312786e 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 54f254b4ad..190608b4c0 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 3fa416e996..fd6acb1913 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 9e6975bc03..4f54b77b4f 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 b7cae7c8e8..94252b5600 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 4a46282e1e..9e42895a7b 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 fefff49b1f..33b4c58459 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 f26c738acb..c598612fc3 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 43473dba38..670372f5c8 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 52f780b918..86bf985c84 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 49e9a85019..9e17293091 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 aefe5260f8..eb09231386 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 9c6fbe80fb..97e19e7d40 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 232b820fb9..d4c45eccdc 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 3bcb39d8cc..0d2f3a79fc 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 952adc0707..d6c4700e6e 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 fcfbcbff13..5691e8d23a 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 a352dd762e..a79fc901bd 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 72221a0602..61d2640997 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 078892158b..1bdbea09e3 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 7b951625d0..2434a58e21 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 0838afdd64..b951539ca3 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 ccbd40ee72..04682837c5 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 61562aae16..7332febf40 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 514a1c97d0..aaac04ebce 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 6de4af39f7..c5c5de8baf 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 4b743aa0bf..0bb85e591d 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 5ebe8c760a..d4cdd802f1 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 85fe146121..af59aa7c14 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 738529a46e..6ac1bcb671 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 c414f38fd4..70e9f2a5c5 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 bc01b97f6b..a4f14a694d 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 72f84d7f9d..ca3e7802d7 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 94cfb89777..b841d2cc3d 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 7767db6a7c..33c1b22b87 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 c63ce73030..39ee8ac2ca 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 fc9d2aabaf..9f70f85e92 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 e008fdc1c3..9d54e150f8 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 cb7fa8ba3a..f1945b1c86 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 630a9b5342..0b4c4ad658 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 4aaacd42b3..42b4010c59 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 fee9070f5c..c29a54d2dc 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 703fc46585..e20629095b 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 e49b4f06ad..35f022f1e5 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 929cf247a8..80387dabf7 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 1369233aa7..0bbaca41dc 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 97b659d932..9251c2cef2 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 9041da7cc4..6f93246044 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 514b2d0554..f53fa1245d 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 94caf43c9d..72a5265273 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 88de923faa..cda700b923 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 1b789eb7b4..5d24551aae 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 1e622022a4..5880bac27a 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 d5becb9b88..79ca806e45 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 f0a0e9951c..f9966691df 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 02c4e34fb9..637aa23ad8 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 7a399554df..84fdc0eb41 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 bbc6333b3a..ae4077363b 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 bf475f119f..4b7e0783d9 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 3201fe717c..80a8e042af 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 ddadef1443..ae541a9ff8 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 516cafccfb..55d66ae319 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 9a8f23d1d9..cc5af74078 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 030ec18149..706a88cc69 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 cbb7060364..6993056c35 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 d652c2eebe..56683ff442 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 72ec930b68..04f22f2ced 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 24c43fbd2c..20a82f76c2 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 60f13a5adc..0ec55ce8eb 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 337b9f4ff5..c3a90a12b4 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 3c0504bcc7..808ea23273 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 1252da8e5b..19ebe04f58 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 a4e7be9d21..7979b39596 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 7cba9075a4..41a9d719e5 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 0c0c8ef1ba..c6957d7fc2 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 8852188b02..80267d3ba9 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 2e81c4b6c7..80af6d6090 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 cb6b7db145..201a4f9fce 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 589a4eae8c..6dbb277628 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 668bade88a..fc748bd519 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 9cd7144186..ed2ef74a08 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 b13d159175..5728d8e1fc 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 966e60e8ff..555094e111 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 552fd645aa..3499326741 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 76eab3e281..6320c0a916 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 e5b180d809..85771a3f45 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 64b20542b5..6cd79b3534 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 b392e72d0e..5eaa48b0df 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 1412a0bfe6..d9ec9a9239 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 4af91308be..de282845ed 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 5d591b3b7e..fcde88d35c 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 ebfa4367ba..d7cde1cff8 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 d2dc8e398b..888a817e40 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 c7bba427e4..20c7651d76 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 e065080986..36ab6f14a9 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 c2d15a2940..15f3297373 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 cc84d8225f..a9580b975f 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 dd77d11a92..76c2323e7a 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 0ccd38a949..2f8866f6c7 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 54ffd15108..e52cc3f1e2 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 a54af4b754..28c42a704d 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 3edb51f684..ecdf0f7b3b 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 5d1c525999..5757b68d8e 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 4b2fc38b0c..4f60e8f312 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 65ac5f4439..2ac2958483 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 049aed3e78..61465a6bbc 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 0718dbc113..d084cf1b44 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 c35cbe5559..1e49f8a787 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 8f449b1e5e..313b730643 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 ffddadc3f0..af7fd90993 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 22fc8b91c4..60b88222e4 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 d908292a43..473d88bb7e 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 ea8dc2481a..918e4a9505 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 187af8f87f..e0342df42c 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 9df3235ca9..2996591c7a 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 c6b7c3b1ae..a6779eb68a 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 54c53e74ca..1bbb9e6075 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 5c1e1201bf..25aa218a67 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 f2b5b8df2c..29e48075d7 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 f21358f152..8c22185bdd 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 98ae45ab91..8c9508c7e3 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 6750a983c1..4c4aea77db 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 f9f1416d8d..ae67052066 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 267fe99c71..22e29f1019 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 50a381c0bd..969292c626 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 15e30e8c65..8539229456 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 182e4f2076..653e04878a 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 341db5dc05..179e3c6c84 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 a2bc8eca29..3806e05646 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 bbb6ed50c8..c39ad900fe 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 ee9e7c3675..c027fdd1e5 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 19bd57df72..6c51f68e1f 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 96a0a604bf..93929aca2f 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 7847f3cdfd..e01968fc1f 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 ab78f750c0..5f044a986d 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 4d0247b03b..f1f687e2bf 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 4c82869b85..7c2b2b3415 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 6b5001bf62..72a882e6d2 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 e470d8df6e..b3f64b62ce 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 aff4df0552..267abd5200 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 d7ecb4f263..e168b3be46 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 2c33bfee47..988e0deb3a 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 5e78ed8a30..5d63de1dd4 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 27982f0d3c..0a6a59aef9 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 1e32a1d3cf..87f8636ed5 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 27db99eba5..582cf8f0ab 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 ea8daff4af..634baf264a 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 d5914b6f70..163f2ac461 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 ab9e86160c..3c3873f96a 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 d94ecf3fd7..31c256e7b0 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 fb4f65f7e5..3bf36ca33c 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 ba0e22bd72..4782dd9c20 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 60d36d336d..00b39f9326 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 6ec2960f66..0fecdb0455 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 1a9623ffc7..fc056c0d6a 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 aa62ae94f7..4693cf1409 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 f12832275e..ec77816115 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 dbdd684e5b..09cdb40e59 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 718ae9c449..f9c302f1cd 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 586773b4c4..7a3b15490d 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 45e2d19547..9c50647044 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 e0f0b688e9..1dea20742d 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 2338738cd6..df98b35f2d 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 827c0e0818..ec1a0108ad 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 21ffb64007..8ab390bb4a 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 89caf96cab..b9f957c679 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 32bd30274b..0fccad6d83 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 caf1c2c086..8009864503 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 086f3d4850..77d9af0380 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 3bd70c854b..c1f2aec458 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 f4aae9887d..d10a54c159 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 d050eb2cef..3ef64ff664 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 afcd4711f6..72064fbf33 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 6ce963b812..16985ce646 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 ba9cffdcb6..1c6705f19d 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 5ea0dc2f58..982a3e5dc7 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 cecce67cee..f386eb40a2 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 deb9c873db..76bc85bff0 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 522d8cf56f..06ba020d14 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 c90415a214..c4646bb8e9 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 4d345a6e1a..537009dc05 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 7e04417728..7bb1c2c23a 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 ee1311dc10..a8a184da94 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 bfa48ab08b..9b32281642 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 6b9d785792..9744a077d1 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 1ec11d4aff..672a3325bc 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 eb0db3d0c0..9d5148133c 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 f8e5aa013b..d0bd720288 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 8481680428..326410dcb9 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 29bf88d8c0..6c1afc4f29 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 a3f480ed7b..961e5dad53 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 06cb835f51..2f46c21428 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 9acacdc73a..6bd705f849 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 1eeedd6155..256a953b18 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 58e1ba060a..720106f4b9 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 150e447a7a..afd4ce4ac9 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 1e7cd29c0f..d153e861b3 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 15f4299968..2f4956390c 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 2783fa584b..f096e9439a 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 01191abd8d..a2b390ad0b 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 d07dc7882c..343f76a632 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 4b4358edb5..f689a4bd25 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 29412990fe..1c2f5d3d42 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 d9dc9821af..936353e1a9 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 f490584153..13178567e8 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 c9d82b3d04..e68cb3f471 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 d12d38986b..2c546d6b15 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 7f429de4f3..b67cf7ec0f 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 9468f99e86..7074f382a3 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 d27385a493..da43b0a7aa 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 b3c0216b46..ce7daeb60e 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 a725d3599a..1b6b4f5c21 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 cc4b783bd1..44aba8656e 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 f2897b97b4..b60d2a418d 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 271a8508f9..3735571af7 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 0cce790524..3266dd2767 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 7ec43dc5b9..920675b1a6 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 baaf9d8dd0..9cfab9208f 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 a6e21cca14..496646c4b7 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 9d48b7a4f7..550cfd4845 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 a8cc075bcb..c42708dc09 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 e4448c728f..ae39b3b4fb 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 f87680ac8a..8347010804 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 4f86721616..39ac1f2599 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 ea000c6b60..e893818d9e 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 d21a0b51b7..c9a5f5739a 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 88107d2f97..47d274cc55 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 419b549430..85f6380173 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 21a1d42db0..37402a2518 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 6460a427b3..c4be43d642 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 fef204d542..2c95119116 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 5a1fe88296..7ca531113e 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 b7e5a4bca2..cabe8bfdec 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 f5a55e93e8..9083eae7b1 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 bda31c252a..1e5df4c0c5 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 e41073f460..f17d8f14d2 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 8f97594f61..737ad75f6c 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 8e819c2a81..6b843362b7 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 56df3d07e9..b2b9d2d40a 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 3b301309a9..92167a42d1 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 ebc1da7b32..4cb6922c53 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 e618586921..bc7b473ec3 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 db88ce77e6..794d847357 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 10962e9019..48677afae4 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 fd86b0f8f1..eea3293c75 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 7422f0568c..513ae3a578 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 5bb7e631c4..0f636c6358 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 0615ec72c2..fcead85dc0 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 f482698ba3..58de17cacc 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 2266af3dab..ea5272f610 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 3c390ad660..ba870643c2 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 7ccf5587f8..ca94f484c7 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 298673dcf1..bcf172aaf0 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 ca2d6a7d88..dd1a1710fc 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 4dfb026027..0596600540 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 58e29108be..cb4c1e9784 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 5fb60ebcaa..6014bf9dd6 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 d0eabbc751..beb24ac80b 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 88cbf27d3d..c1ee7fd39e 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 de3eed78da..9c77f8f6f3 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 9fc21aa61d..6b812da5fb 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 00cf0fbf76..f17f2b796a 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 a878670bc4..555b834ef5 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 9a094bfc29..614b4f0b3e 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 73d9c296a5..5395352eb8 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 59ae6a9f88..bf9ce83e0f 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 e6ad0d2bdb..54dfb809d4 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 ec093eab18..f7871b2ba6 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 f557264ee1..5a91ae72ac 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 5b42a35e89..3f6a927b6d 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 01bdc404c3..a10c8ba097 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 b9eb65e1dc..832ca705be 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 5c01bf61fc..bc1319a384 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 203e32a7fd..a4c6d1302d 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 cbc4e3fc5e..b36697d0a9 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 a40c848e9b..ec2a384391 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 c1f5afea4e..7979d8b975 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 6ce72b4ff5..7590597d8e 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 4373b7069e..8ef18837f0 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 f52b83774b..ceef06d816 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 028eb6d2a2..8806cdaecf 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 b53dd704d8..1f3187eb53 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 93da56b75c..8d694eaca0 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 7ddd1e6607..3c6e089673 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 300bb172a2..2c56270097 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 dfd57b3b6b..fe8136d015 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 e59d9b93b7..64ecb7872a 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 f70451f10e..48f126c30a 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 55178ba4c6..1815eda4ad 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 cf8ad41748..45dba359a0 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 179b72d087..849ec4cb95 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 d4580fc054..82cbffc725 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 ba13c8553b..c88d3767ab 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 2f683c7c71..c8c8f2ed1a 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 062eb3f87e..0a6d37c95a 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 bd49e5cc83..c79ae0d051 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 cc87091fa2..e3b03f9601 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 1e2cd07cfb..9db8c48f80 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 5f0f848ce4..ff8b2689f0 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 048f72275e..06189cab7b 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 649d299e20..2a1ac66878 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 8bb52c2f3f..4b354620d4 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 aa74344187..4b9c3b8d87 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 9ae04b2312..38a5f4ee8a 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 1650d924e7..59d3756730 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 4aa84aa11e..ecf4d74387 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 a9e33c604d..06823028d9 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 c28af0a783..3c19126c06 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 7a16056f3f..740d2687b4 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 10a4bac206..257bb5c583 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 514cfb3ce7..9562c2c9d3 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 0fc03197f5..6ff87b9179 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 c5bdad5047..e055457678 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 8b39f1b993..fdb358f9a8 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 f9fd4f4e32..5c28d959c7 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 2440a4af10..310db47823 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 8a8d5144a5..da28c5701b 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 5c2dd6e643..0d9e617a85 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 2095a3e2f4..4892b30436 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 3ba5098b89..ead969017f 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 a6189a527b..c4c172a14b 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 fd5f9508b7..7846d493c2 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 198142dfe6..7f5893836a 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 06f260cfcc..bed01dbf6b 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 9e0588ead9..c0b0fec60d 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 6404183816..c2c85978f5 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 c18e4288a4..1d95a27ab3 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 efc74d306e..0a068124b1 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 4cb73d3a82..1b2cf1a1ee 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 ef840c96b1..0a8fc8f2f0 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 3a2875c72f..03003a33db 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 7233a1695c..a0da1dc9f2 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 d53783477d..97aae865bc 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 1677ba269a..9976b8f6df 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 6d7da1508e..d495b43c31 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 408a9c97e7..e75be8f1cd 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 9830869bf6..6322dc931a 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 3426326396..a3987a417b 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 0622adcf83..98a2307f61 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 c4fca48169..bf62f50d1e 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 90e0401bbf..0bbd1c9b50 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 1b30cada38..0c289e22da 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 6120a81036..4bb0acc433 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 a10f8f6849..972664f62b 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 d5df4fe807..5caac49ce3 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 07e027bb2d..cb5179c3fb 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 b2fce0d534..1ef4493a2b 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 d0df996327..ad34c00875 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 51b3466225..899d44992c 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 147db90545..b195bf14a1 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 af6d59a743..175377453a 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 b224d0b6bd..d4388ca16f 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 739d6fa439..8bd1aa08e1 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 4e0e8b69ae..bd42da0d6d 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 cc1ed197ce..92e5c55d95 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 eb036e4659..3eb6697c36 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 dbbc400d7d..9eeebaaf2b 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 6dda80793d..33dbc662d8 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 649c1ddf65..3676612582 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 3164306fa3..7508fef77e 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 864d4283a0..e00c04a02a 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 ed3e15150a..8986ec6d2f 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 ea89732b18..fe584db837 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 23963c5079..ffd535e8e4 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 bb5503398f..75023efa1c 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 e0bf902aee..141007d91a 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 ffa9f6be24..0dfe96a714 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 a642c3e7aa..ca3da549d5 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 75f2595a5f..5bbac1e8ff 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 649a56410f..e3c5afc32d 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 01c66e80b6..2df2fe3c69 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 b1f34202db..89661a60ec 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 8d58a24a2b..d7ec0df32a 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 20b426cf61..f702ea0b04 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 71fd6f31c0..a830528571 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 7d62e35bee..9b277a0aba 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 1a1d2c8615..3367b23b06 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 5ed183e383..ccadb3bce1 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 3530d670ad..3190b6d98d 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 74d4283398..e26f6d32b9 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 d0b8affcf9..e3e8a1f991 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 7e3e7a8dd3..2961c61b03 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 e49e6d86b1..de212b986d 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 052fb6c6f8..d581bf4724 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 075ea7ab20..cbfddd2c8c 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 5b2a26f080..31871fdfc4 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 e759c0e2d9..dab1c1cdf4 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 ee81e45c08..7f8e99f658 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 f8d548c77e..d30b468bac 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 f5eeba24b9..6baee3a39f 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 dbad26515e..7721f47dc7 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 c85e21ffe4..26adcc9f53 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 85f8d6ec00..5f9b7b158c 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 24aee2b29e..9fcc7ee2de 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 4cc8aa668c..4f193b6429 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 a74c6b8774..81451103f1 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 c8c7ba2ac6..d9b0776f1f 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 d00698708a..13ca02611d 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 d0cbb5eea6..9aa220777b 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 bc4c994399..575cace175 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 23ef1cf65b..317bcf38cc 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 74b6e2bc14..3a48650423 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 dfdc4881ec..e495b557bc 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 47480c2954..74a301ac2c 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 614cbadaf3..f93bf8435f 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 42ff382a05..bd40305f53 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 cbe4bebfb4..b3f4dbd132 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 dce14e1d21..3be8e74438 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 7fb2b4bb67..782464cd24 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 423a354470..fd76b9e454 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 42f58d03f8..fb18ea7425 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 00a2f13656..7a08ea0513 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 f75f50e2a5..3a3bc3ac90 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 c1f798f15d..02db5bedf4 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 3c063f0e3a..a3afe24e5b 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 89025f569d..0cd2ed74ef 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 c355159ee0..9a273dc6c5 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 47c836e1e8..ffd9076f95 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 b9808019b7..5ef9df19ca 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 2e0b1a023e..03154d8a02 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 292613739c..8bd99b64ab 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 7d3fd470f0..2bab66f101 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 2ee9bc3252..9ebef061c2 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 cd9512c896..5e1b010453 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 ba6e790c46..c8ca48b698 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 3f35186be0..64d55a74af 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 2c9a38eed8..22e13c4f6b 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 e7617bf9d8..f2bcee87e2 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 9432ddd457..f293146e25 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 002e345d48..29f48b235b 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 3d05df255f..2c023da318 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 95792514dd..1e3aa01cc9 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 b2c02d1106..6d18d58bd0 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 e49545fc82..d640276c5f 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 ff2373e08c..0b74788c3e 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 de7918b31a..6d9c3787de 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 3e5e5ca6f4..de4b063dbd 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 9f80de29e9..941f58263b 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 49bc6ee917..c4557b875b 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 996c6fe8f9..4ebb59d8dc 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 29d5a48f91..714384a25a 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 bf01f0ffdf..7b6d4ea502 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 a151e5797e..4095a7bbbe 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 d7e44c595d..b0fcc6b67b 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 87f5fcf86c..d8a701d277 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 9b4365dfab..0f11f153fd 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 295f017b14..f6d12f2c4f 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 ee33efeef0..edc7a8b864 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 f73d9604bb..2fee0dff7f 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 60f7bee14a..3f49d00aff 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 4918c1c9a0..0bc0a5d28c 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 a78988546f..a7b1a9d714 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 60881a56e0..8f729a5a79 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 0d994817b0..52bb42ee13 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 6fb5aa6b61..f4c1285788 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 b72f1c57c9..8b8dd360f6 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 22a8b29ab9..dfcb65a4ca 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 b23f7c5935..21a6cb50e7 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 56d68d4da3..99ed8ba8a4 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 e547e5b556..440f2d1d9f 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 fb3b323dd7..80d22794a6 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 26d7b749ac..fc5f5281f6 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 47291e9fe0..3bbc8bca6c 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 87c16febdc..7fc462ad64 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 bc86027114..ebf863c074 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 61febe86a3..805a12a49b 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 5bf6f61c12..1d4ba625bb 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 8eaf85f5cc..ea1180fe50 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 dfb707b28e..4cd4498487 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 24161f9f9e..537641b296 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 2a11ee5c12..847a5f0f88 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 4c6f41046e..9c5be1c6f2 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 46e2e254fb..326a82ffd1 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 ee011cf130..b2cc6ed604 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 4bd41b6900..a7c69ac12f 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 1388c91cd2..d636f9cd52 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 3ca3cce7f5..3f019eb5a4 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 18cd4af076..58c2146963 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 32d82001ef..2e8dcafdae 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 1a922a3b8a..f71038fd35 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 a4cbb1b330..222bb987ed 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 bcb15450f4..8545a17769 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 8520429791..839731e29e 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 a453d0ab0a..9d9cbd2ea3 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 2f8edb1b4c..121c1917e0 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 88658a5334..7a04c16fd0 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 2193f70f09..4860714ae6 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 ccd44e5ae9..248cc87aa2 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 80548b2c12..84ae53e75a 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 d4e4273464..4c4cbbd411 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 fc5ff75873..04bf425cbd 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 c811ce4805..9258386695 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 19c0c0fac0..09da762034 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 b74443deb2..d6a5835e05 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 cacdaecccb..9eab201a74 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 384dbee48c..7a6fbd0bc7 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 c156c2d753..7b86f1e454 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 16aaa5e9c8..2496177822 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 33ec321fdd..e58764f791 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 f76c71dadc..d841a1116f 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 dac27d9469..2b6226765d 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 5d5409e9ec..e807e6cf5e 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 2c51d018fd..654411ae32 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 dc89f05c96..aa3b177a66 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 719fe599a8..9ec4504931 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 80072d97ed..d41db37669 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 10024226a1..d4e3f84527 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 ff406a2cf8..edab0b88ac 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 36605dd9c7..d385b2d42e 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 3369b83fe4..51567acd1d 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 57a2c82b71..930938cb18 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 f00867f8ae..c190d1de95 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 c1fd0bb843..56def927c0 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 d87d2ad201..25292d1124 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 24d214fa15..f1b0315436 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 7e2ea85920..8cfac5d18e 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 2ee13a59b3..21accf4091 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 a83fb7cfa7..2c3a06ff33 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 7613e83f41..188674c4c7 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 1b3d77bcd4..804abdadc2 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 61067921c7..37d3ff7438 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 67e9585fb7..b880ab7f79 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 ac89883a6f..2e533d3a81 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 d1c27fe0f5..7a8cc9b61e 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 82fc946b13..230b10d284 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 df7f88de4e..065bdcd7a4 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 4c3484c71d..c02d7964fe 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 118fccd95e..97363b463a 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 ff104a3135..3e0359f6fd 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 dddda088e4..8fe3004eb8 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 780b19337c..e3cb60e919 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 86055b6f09..8cdd5e11b4 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 802946b100..60614c1040 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 8adf1e1b55..4c3715e445 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 f7f96da287..f268d872e9 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 87c25055d4..54238eec70 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 b019acc79a..9ba6f1e1b6 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 41df0cc82b..af3eb8612e 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 78b6987036..e56669e054 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 97d34baf33..c0aaeb243a 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 1354f8351d..af0bd85a08 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 c744ac64cf..7560ab3929 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 f9d52b40f3..79bc8a6a0f 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 d735d35c34..2ab0dec5c0 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 0b2958a15a..522fb45412 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 970e258cee..f4db668d8c 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 2d6dd92d9e..1670b35b0e 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 b593c7a773..34cb956961 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 2a2374b5d3..ebbd6f6ee3 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 ec100ba798..58b42b0640 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 c3c1b85b32..cd11b99aa1 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 5f43429326..9d6bc506e0 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 ee12afea6c..462536424f 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 da1c4ba3f7..488185bb54 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 cd54588364..96fdfda04c 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 e5b96b6997..3d4afa30ff 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 34bae904c8..8c4cd318ef 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 043495e074..9055a3cf78 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 f0162a9596..4838a193c6 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 171ce9a658..78aa874794 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 9be776cd2f..6aa4965ad0 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 ae23f98c5a..15b26d9747 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 c8693a2076..8cef98dd2c 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 b06e9cddee..7e2e2e9114 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 997a10d9f7..e8688ac846 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 30e6639fbb..ed5059a7b5 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 e1fbfbce4f..90989a0ecb 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 98eb3adc4f..f002e9f1b5 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 641ebd8138..8cd8dd504f 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 ddd36b5424..b0a5898813 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 442c72be67..33421a7e65 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 b586e81062..4be06a0abf 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 f74e66e4cb..8b66695692 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 181edcf399..ad02801b73 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 08a8a0ebae..c696410825 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 4f662ddb35..82927f824d 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 1e0d21a576..460b8c6517 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 d135c16762..71430f1f38 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 51207ca698..cdd80a9536 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 74708ce848..d2bdc5a465 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 058022dac9..e4eef930c1 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 150b0f01b3..a9ec6b9633 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 176819d8a2..c00d6239a8 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 13bbda7c96..8a06069a51 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 4758067dde..6253300d45 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 8ec00804e6..676e9070da 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 1725241810..05c2cc8690 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 bdc1b26794..a277ec43ed 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 21ea74c125..27e76640d0 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 77ab5e323c..a286f63dd9 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 43cf686ea5..a216f3512f 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 b80df29404..c84077aa66 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 e7feda39d1..66a197aaa1 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 70763b70af..db2c42ad63 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 6c479edf1a..f8df37cc95 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 98dfe4353c..a6b2673a27 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 8d7fdef45b..be6fbacfa4 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 f6ee83acbf..e2f427952f 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 2541397787..1d1e56d0d2 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 bd878a5e2a..f1dfb78d2b 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 f8163ada56..fce4197097 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 fd78911cfa..742367f4d0 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 9d2d23d968..22dcbd3070 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 18d0d88bc6..d19d4e6bc7 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 115fd1c883..8a442e288e 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 d279354a13..71a6115e5f 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 0b66ac39b4..59720cc583 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 a15a1bd006..39b106a305 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 69432d8187..316d8fe7d3 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 4d3640fe23..90369f9653 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 5cbb74da2c..e23e1bf904 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 64c067b605..804ec478bf 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 0eabc2576b..4f442927e1 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 973b702743..894462f18f 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 43dff12723..15ec63d85d 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 156941eace..971053f9f5 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 5fd5844d5d..ac202f18b6 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 1e72509ed4..8e2429eb29 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 31998e952d..e8b55cd662 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 faf1e56e38..28e69449d1 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 87998626fa..e8208684dc 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 4d9e20c8af..ff4ae22dce 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 63f633f8bb..9cb7ec8d1c 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 a8c85e234d..b80e40eec3 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 e29eccd11c..7566449c9f 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 a6bd49b380..5f2a7a26aa 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 e20e1b45b6..403db2a170 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 df5ef2bb33..55bd192b52 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 87478df111..0bca769a51 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 74f40cf408..c0c7ae84cf 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 e40cb4fc14..2ecbf9492d 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 ad3c29295a..bb0b1f098d 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 34ff16c421..be55b3e5a5 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 3b9b6e0c05..a4f5494215 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 ee7823af41..d7f3d09efa 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 47ca2d42f9..66b056ac63 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 ef9a4e8325..f43c34eef6 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 b7d5e5a1d0..fe5449db9f 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 f1d8d72a08..6bfb51695f 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 9980e7a69d..033e6992bc 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 264ad918cc..07f459ec7f 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 76e2c938ab..91f2a2f27d 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 deed0c62bb..11d2cc67e5 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 259a490b35..f46b83b2ce 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 825b183fc8..07b659327c 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 6bc6eadffe..b8712b20a8 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 df663bc776..c327078d97 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 d3aa64054d..89ad4b1cb1 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 0985d541af..7bf9401c52 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 a6c706d3a7..09105bf82d 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 2611b90a04..4634bfc0d2 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 89ac0edee6..15d8fda0de 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 be0d63bc1f..e53970f430 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 bd7b3ed672..ee01cfa534 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 4d8eacd143..5aaec92132 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 5f9a368049..1b08fc26d3 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 2e0c041953..21a1c6de0b 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 e1c8e66e56..122b847427 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 a171077e29..1da50e4540 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 8fc8caa8f3..80d5162f20 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 f9a5547442..ba6c3d5c68 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 c28e4665db..635c82fbdf 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 314d7f8967..5711b8535e 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 5548f24671..8b128b56d3 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 d290b19285..5ffd0be74c 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 74cdbb85b0..cde7332a5a 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 192d552059..751176e50c 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 18cdb523a3..8eb800b4b9 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 afd6bbc59a..bd01491b0c 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 2c4fe3d0e2..789e7adc3f 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 f53d9b4ca1..ae323185f8 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 19f3d4f7cf..5b38248c7b 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 38983dbb6c..96119b3152 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 2b05ed8ca0..300289ccd3 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 ada02d313a..4128ac8785 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 5bfe0bc0e3..3faed3ffef 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 02a17979d1..935aa85bc9 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 e02dcbae4a..84d1491c14 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 131b61b206..ec6b2bf89a 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 e430b54544..6fb651a814 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 f8ea2cc729..5856ada3b3 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 1d5308abee..21d82bc5a9 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 d97e51e6d2..c715d6ff32 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 3b62017206..c9d26d1a57 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 38dc09bf49..8badd96e24 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 4395f058fc..e3abce4ac2 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 52129d8d95..97f4c462ea 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 85e266902c..bd387c1095 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 b16832c7ee..fd998193ac 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 08bcc865e1..c8a9fa0141 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 be6a5151f8..429cb68045 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 248f4f842d..a7c3a06410 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 7bce1b1c39..36df5dacb7 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 d350a6d2b8..4ec6460df1 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 37da62ae2f..9842f13862 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 21ce4d010a..2236737649 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 36e0d04ff4..11268a979a 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 b5e2212b06..7ad538f1f3 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 d3e27a408c..4c3bbd3d57 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 d4dd372086..bbb06416ca 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 e15337f0ed..675fde0b1f 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 8995088376..b922cd1677 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 b8f4bdf44b..a95843fca8 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 ed1763a833..f3cdfe53f9 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 67976043db..e2dae09675 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 6262f49dfd..476ae50759 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 fa5324b183..130def39a5 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 7eca7d0241..5d3d669c73 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 3fc9c4e387..10997ee147 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 7e4f3b6806..9976df06ad 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 3fbc862869..da64245a74 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 5c75539079..863fcf7738 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 6b4e281a01..56ab13b01b 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 5d2f633193..595831e4d7 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 c98b81d908..a385f2351a 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 9bc3c942a7..4940285a5f 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 da383f7aa5..c0b452198e 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 acd9253d1d..0acadc8922 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 24b4e3f5d2..df181da792 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 c4f962eb86..a2780c954b 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 6fc215b44e..7a7e306628 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 d14f4a60cd..4110cb8e11 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 bf56a3e921..684a458d3e 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 304e6fcd3d..32f2736514 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 74516f3b0e..cb8e92fdc3 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 b1057e9d73..d639031cbb 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 d18fdccca4..2205e4c083 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 d1b90fd56b..0a721cab6a 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 1bef69dcdf..5fe238f91a 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 19f58544a2..18783f621f 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 2ab0374cba..eb32c3699a 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 342d514cc8..ed65c4e642 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 63634716ab..65666e98b0 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 f565b58083..34be9a4ebe 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 77110975b1..66818b7ae7 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 d4848d17a0..5afe9bee9e 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 41cc2b1c87..c9895de45b 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 8575de8be0..415477698e 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 80c3c6de80..76c711aae1 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 dea1cb65c5..17c339c92c 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 a05844dc40..91f50cfd3e 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 0655b140b0..db36f16f86 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 6bc6c487ac..aeaca627e8 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 85c896da55..2d558c5043 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 a131265946..d258fe155f 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 2b388aea44..6a48a77a88 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 7b2b686923..8bc6d7d726 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 3fa63d344b..53ada53ad8 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 4cb6815d8c..6015be83b3 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 d8aab64201..2e5ef2c3e9 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 8833486616..4aa1b6b080 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 a8e211d5dd..e3fa211ad5 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 e5e4ebf6e0..7a98880a77 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 af2dcb9560..f707e11ec4 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 558e164e0e..eec4ade5c4 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 993e7ff958..cde82b16ec 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 33f55f1e42..93cd651644 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 6a81f97275..a1aa70b9f2 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 e80acac0c2..f52642f8a0 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 009418d1a5..a96847a331 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 8294ee5c67..4cab3a2d52 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 5b11f5b672..e00ff12d24 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 35c1ac45a0..c2c7351c09 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 6263cb2ac3..c3f70cdec5 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 b4a5531be6..4435a10b54 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 986f9bb11c..ae3ad9e8a6 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 694a69d5ab..6117ee2ace 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 f782ad3778..55d75b95a0 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 58f18c57e8..3903b397ac 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 aae15f2503..4927ef0363 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 c2d572be69..53a3d27dd0 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 f03ab0285e..0c31a6a33a 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 83c3a525b9..c7e570bafa 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 99a32cda04..f5ee1997d2 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 19801c727d..a449ea198e 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 c237ccefef..6c0ded41ee 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 51a71646a7..467f8a4336 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 f4aaace18e..d2746f3e27 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 0683536c23..464853fc0a 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 08add2d036..0be7e890d5 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 392afd363a..6622749eaa 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 07d006a464..44ee0460c6 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 1115f0f6c0..d4efec3afa 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 50481f5581..577dcc3f7b 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 6dd7dfa067..442531a406 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 94288f8422..d5d21e6d3a 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 131e78c296..53aca375ad 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 d27cfc3c97..a0e938b92c 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 069e6896b9..13136ddb26 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 89149eb1f6..e4cac7416f 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 7014844a82..e8d4fb403b 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 4f273d0696..59c555cb3c 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 2337482929..19ebe54ed7 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 a292e4e15b..88eb4e7f72 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 39bb14b199..895ab5f713 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 9448b207a9..5045e10ccd 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 cfc490f972..0216edb44b 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 e19b0e1282..2d4d4454a7 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 6ef7094291..ef8f7d137a 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 106dea8044..d018978003 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 334ca8b86c..f40160369c 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 8bd0436484..adeb79ed28 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 1e39e5cd4d..d90bd892d9 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 5bf75d19b5..5b76246d8d 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 7e6e4f26cd..f06b2d956f 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 b6cbba39df..b3c4a4e8bb 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 2bca5ebb30..5d5762d0c1 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 c1d724be4e..039ccc61f0 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 1a976a5d6e..a53e6764b5 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 cc03b31e5c..4b56f76141 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 428a6fed52..aa3be4707c 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 397bb39edd..c2564643bb 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 4a9596de7a..566c278091 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 fd0a1da295..a47b92fe5f 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 c14c7bb172..53862c07ab 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 0299ac7b68..2eaa65703d 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 102878d845..b9ad4ed9db 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 54bbb041ba..12391d646d 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 793c556f7a..ee8c6f4a9a 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 d694b77177..447b165cff 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 d7293cb788..b2f2a63302 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 57ba2a90a7..d39f5ca3a8 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 2029c12be2..5febf51953 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 e042731f07..f16921a6df 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 fd90ab7ef1..6b62433746 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 ed68b42a1d..6200bf67b8 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 a4b85857f7..61a9d64012 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 c9282ccdb7..14ddf2a9fd 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 a0ac4f87fc..2512a2144d 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 f33e4af5a0..109c06af86 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 0a1493602e..732f209239 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 79ace33592..3467117cd5 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 b2e998a148..b2fa74db10 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 d694204e41..5e3982a502 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 efc82eddf0..65c9a46589 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 e4b909e2e6..1c1d5a20f2 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 e3c2a2c0fc..f82c5c0928 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 1af9495e26..b0f4aa426b 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 a2106dfd48..c64631b71f 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 654cea8594..d5f6349ba2 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 55607c9195..29a63fe6d9 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 c31381c6d9..3268a6d983 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 9ec381ea40..0694c52785 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 c0e9b0f198..1d1499bc89 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 85a7a0ca1d..9131cfa86f 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 973d6ba69a..439faa46e8 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 4cec5dd318..1f1b1c4fca 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 e45cae2190..6421412165 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 b51f82187e..9a40967944 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 38969f6522..d0b9a4d503 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 43859007b3..cc315b06bb 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 ea12e40fc1..cd37661cb0 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 beaede2afc..d1978bc6c8 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 5563cfdda6..c379258901 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 28a38404dc..6cceeec66a 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 38d0170def..19620aca0b 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 0b31e04467..a47c2a7668 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 dc7f50584a..ab25f93567 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 8dfcbb1c55..ab5fb33e93 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 2ab383011a..c1a980543d 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 ae021e7184..fda8bdfd84 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 e4193c4df2..282d3c6736 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 135da6ee90..fe6c76bc0a 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 cafcf74f00..ccaeb2fc6b 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 a9c1a7ac47..c7c40354e7 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 2847c1f581..c3613f0243 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 de20c719f9..8f4c16e458 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 136c202490..31f3b9e562 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 d6fb16112a..d1abaaed67 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 49124cdea3..46d774f47a 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 ed37f30c06..e1cd58c46e 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 26dcd77b47..5c80afe092 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 9b6cf16ae9..d45b0a0e34 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 cbc5f84fa7..f7d807caa6 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 145a54e8d7..6d1cd1ebd2 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 765bb116ff..caaa0cc8f4 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 f7f3f6b718..166b0b27b0 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 c67010f229..ecec12131c 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 79ca3bbf18..a75b6d5f14 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 7769b25e94..ddb9ab3e34 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 40e5ac3a84..b1c5c700e3 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 50b40291f5..8316d830cb 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 4244db741e..da428e2826 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 2e57a5b69d..a75513c76a 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 41d7419e70..5b34bf4db4 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 eb8d4327f1..fb41a0dc64 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 4dbb5c10c9..3a4a25d0b5 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 aa7cf5ddb4..1726894720 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 72e12c0830..c47cc46963 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 9ccef9f738..5a8922ff63 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 b068ed105b..107fa0840c 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 b293bc964d..b441b59d8c 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 cae4abd65c..fc6036f6a9 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 a572de6f2d..c337c2e084 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 ed6e4d632e..8ddcd275ac 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 ee5b57cedc..57fefb70b5 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 c1e1f07d30..1d6a87aa21 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 099f492a50..08835e644d 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 d2338392e5..e215bb7d2d 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 4803228fb6..e1ecbb0ef6 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 de36485ca6..3eae410fdf 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 3b00db39f0..06628649cc 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 74ee43b9da..aab0dd6052 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 868820b38c..d8c6311ad0 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 aeea9fcfff..b3f3d80342 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 34acd67c1a..2bbbefcf70 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 66864c5002..4a19c6bad8 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 0ae0ce967a..84e7c032df 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 693b913bf3..e9cef29f46 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 2e764341f0..fd2d264170 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 7f7ee624e4..54b70ad44a 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 655324e356..2f9b67143f 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 e3fa990517..b424423eea 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 9b7c648ceb..28d88ae046 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 90bf6b2e54..340410e493 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 d2ec6a2305..4ae22be5e1 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 6687e02f61..10929f2287 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 216df9539d..7f19faa2d2 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 07551a720e..82d6f45dc8 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 928cda72c6..54bc0c7b64 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 083c158680..b12b7271da 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 677ddae36d..d872550daa 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 3b29083d44..49a18b3abd 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 de40012188..77971f2bde 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 b6e1f31774..889bb32ede 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 6fa41c7072..48ce9c3a7b 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 93abaf403b..2ea86d9263 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 eb15b18e62..51094bce38 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 1537c92acc..6ce59a248d 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 b43aa4c9eb..24c3acd3c3 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 857c2589ff..f1ea4979ae 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 2a03f51d12..8616415dcd 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 a2dfbbaa44..973143699d 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 d138e121e4..922cccb469 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 9235fbc2f7..c920487794 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 5bb2af7e26..a3582562e6 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 ad667b59b1..38a7a172b7 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 0a7358017a..9f7636da6f 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 57d6edf27b..547f778672 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 5e7e13ba64..d676ba62ef 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 eab98e771b..dad110cfc3 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 98d42588b8..8fcd45ebc5 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 a61516be21..3f9298928a 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 c3b73ddb9c..0381c19a24 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 439461ba83..89d912b3c0 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 d1a12b2f5b..cd12c8b7ad 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 5c72304fb2..429c237483 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 9af41463ed..9d388da270 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 8bc3eb2172..85765b4239 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 a2c10c5a00..d74ab62bea 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 6e2a68e972..7455d333bc 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 74d03149f9..b1d96c4242 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 5a40f25434..ff716f0255 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 503cadd8ba..3b34d48fbf 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 a780690b7b..fa223241e0 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 af8a72aa25..d6445d8c32 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 dfd3a64fdd..8d1f2fbf18 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 cda0aeb468..a6f6040aac 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 0b6c5ef5bc..19fad288f6 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 438a05547d..9c6279fe9a 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 27cd4f8eb7..da8c2f0835 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 f3fe632135..260e153fed 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 e0fdc25318..2f9200f625 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 c0b087210c..aa6305129d 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 dd0fe07413..35d36b0d58 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 086942d514..4551c60aab 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 ec873b8d1d..fe54ab3c11 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 7e4ea51713..1be0a21bcd 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 f94a9fa549..0d015b078f 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 dea790620a..947507516a 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 42a2d365b4..3e129b5b44 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 4d78385b1a..12f7c0fd1f 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 412f27261b..70f5b45d96 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 bd61b16153..8640121a0e 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 1cfedf8fcf..8b7abf9399 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 d8be4f433d..4362b6444a 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 d134d18034..92d7658e3f 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 56ddf83f38..97e73762a8 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 ee7bd0aeec..69a6fc24d5 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 4c67be775d..c53a4ab676 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 39de32bd9b..cfef5e573e 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 0a171266ab..bc5548d986 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 c5e3580301..82d4afffec 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 54e98f74b2..93822a4930 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 5dcfcb6127..e35ab3e03c 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 9f144bf9dd..80d1f8033e 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 ed48873962..760821f15f 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 687de8abb8..89beb20f90 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 1c20e0c62d..4cfceaf6b8 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 4fb8c16075..b60f433312 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 552c877940..1d1ec86c41 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 c170d6793b..fd0114b89b 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 5895abfa0f..6d804dc568 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 29d61f56e7..eb23801779 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 b08eeabf98..53b92dd703 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 36b13e6e3d..6decf420b7 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 f93c36cfe5..1d47b6f9d4 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 825fa71f6c..0d403a6d0e 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 5e181f349f..a99aa6db62 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 fdb1fa2433..6ceca0e7fd 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 567526b427..179121d428 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 3889710532..4da452919b 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 8797cbb8e7..234b51bbe7 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 c88272dee4..8e59edb943 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 f3ca997124..54ce2c8ddd 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 f4ad72c5d1..5fad74ddc4 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 d4dda960f5..7d86e58f96 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 df2000e661..d1aea7b6c8 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 4aa69247fb..92a8c01200 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 2c09c78d31..123f671605 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 b939ffe80d..bdc0b7bd7a 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 bac4ab8b36..ba76b89806 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 1970e82181..ff7d4177f8 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 5a450a2b4d..92a07a2f70 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 fe9ff6fa0c..b108630f12 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 64d5ab2a99..e23b4965d5 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 f999290ad8..7769350d41 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 3f22f381c8..5fe82d0f4b 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 8f16337932..cdeb30746e 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 6d22e0794f..ec2a37dd07 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 559348c739..a656f92e8d 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 9f3129a792..0eb2702fdc 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 9736da8a64..796a881797 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 360b495668..8b9a71ddec 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 53c45debc8..50b8cd568b 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 d779f168a3..e960a7996e 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 e07dd77d2a..a028b0c638 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 1d5cf329e4..248d2bc6c1 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 5083d9c7e4..edb09aad0d 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 0b1bdf818b..a48bb3561c 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 4a4b4cc3db..34db11e662 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 5ce3484ed4..7dcc0f7feb 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 80e222f8fa..fef7d20a1b 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 58bfcf78d3..70f8ac2d90 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 558af5031a..b114aa793e 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 8b9a49e51e..fdcf2a8fda 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 bfc7d3a6a5..157bb2d217 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 d50859d1c2..d5a846e124 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 ade60431eb..362cd1b464 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 c79dfbe3b0..cd8a00f23e 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 5be778178d..81139854c2 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 6f226ccef2..507237c15e 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 3f8716a00c..37bb7d8fac 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 6620a17ff7..bce6b5691d 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 0b5ddb59c0..bda503e1ba 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 f7e8aeb49b..b03c7f7c50 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 2d44e204ff..eaaa4fa7b3 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 bb32f4d57e..650f0ba663 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 582c05307e..175475a2c2 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 e8d1f7426f..cecff70e75 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 e474dc48dd..fadc4ad942 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 635521a33e..def2ccf2ef 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 5c1844a111..a23feb6802 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 f1c39e3822..12161c2132 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 eedce20a5c..0e9a7c144f 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 8690c73b5e..b103e655f9 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 c9fb9cea6f..0da362a8ab 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 24592ae606..0160c8a635 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 14b62cd5cb..aa5fcc6524 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 de65829d32..406b04be1b 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 ed2731946c..8983a5b16e 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 3d4cb7c4e4..714e7270a0 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 ec046f609a..2e3c19e3a9 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 515c99444e..0627f12b69 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 420a3f890a..631ff7f1ca 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 118472a75f..b63ad3e264 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 6c325e1b92..5420c5873e 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 b0bf65100b..5f26d3d8e5 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 3ab9d9daab..a76f21f35f 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 c6ba4a343a..c1c7de48dd 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 49ec601ff7..b3cc80b6a4 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 2c5c27e9a8..b6e4136a08 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 95369b2e4a..b8dee93653 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 9018bf6bdd..f5548a16cf 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 db083ff1cc..7da8b205f9 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 7eb77333de..1130d528eb 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 2206fcf85e..c2e34f2d34 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 32d24e8b1b..f90bd4b77e 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 dd50d0494b..c0299d28e4 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 91542bd329..0e91cca2c7 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 603fc812ed..8978f44924 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 04903fc6f7..ce8adb3c90 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 f53c1984b5..2aa1f9d132 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 f3b118c2f2..062dc98f09 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 495baa68a6..c5404ba3ce 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 f73e1fef52..f0fa8621d2 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 a11d4b9407..4357e1fe8f 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 f9cd805809..6334988351 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 35cdbd3b48..93eb430e96 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 89fd51e63d..e8551a9146 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 87ce76bb3e..b35f174679 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 062e9e4cf2..54ac736135 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 5dda3447c7..4b7f2ca5a4 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 cad0c4ad8f..b2a2f013a3 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 df061666e8..26ffcd1f84 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 fd7aabb8dc..692021a790 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 09804e2741..0df205ff9a 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 e08cf54895..5fcce2afa2 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 e0b4d4671f..f00f60fcd3 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 99e3c40bbb..da9a5eb3c8 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 7024cec33b..82e6c9945c 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 6c6f67ebe8..d935aeb44d 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 d153e031d1..2f842bc888 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 8cb819da75..5e58281f07 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 7c8e3a7b17..a334b84547 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 5b25473432..7a1b18e5c1 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 1f1e799b80..2988e983fe 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 4307b5c2c3..78dbc8f039 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 7c3b56f2b3..1339c6e106 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 07317c5d88..f06d2f597d 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 5c42381eb7..85d4e53f5c 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 0f46843cd6..776aae2ea9 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 bf3129d379..3eb7198a71 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 368610bd1f..5520efb0c4 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 d2db734cc6..12a92d6d76 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 cafb1141c7..7810d07602 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 b572f8892f..10e90cb19d 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 0e74d2713f..87a666e57f 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 8232ed4dc7..05605eab81 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 6ed76437ff..17179a75f5 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 0035208ce0..81e17fc549 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 3e97dfdfca..42bbcb82c9 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 0435d8c8e4..f9283fc005 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 076280b7b0..c534093db3 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 44e51c9c43..fdba8177d5 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 6c9295d698..1a0744da7e 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 ab58f52b68..35e3ab733e 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 e7cbafbcc1..9f9c4e9a0e 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 0b5049740b..a9c756a998 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 86db2bd63d..a2c5f489ac 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 6ccdc29cf5..2d60fd5060 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 b57c8e14d8..c940c126a5 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 b593775d77..d6e62f11d6 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 d38d881663..f83049d78e 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 62094ede40..b812cf878a 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 bfe38cc5a3..47a8ccd672 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 17a15d733a..ad09924db1 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 5121eb5cf9..156173c15b 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 9b917a70a6..e1ef56e635 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 0f3d9e1d1e..0e558e4435 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 c1640230fc..44928baae4 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 0d31030969..5d5a37951a 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 cd3109dc1c..3ddf0ad761 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 2d5f626374..5d9fd6aff5 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 8373b524f0..28ce7512e7 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 039a1402b9..c4ec761c06 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 37361ff7fb..3b2d25a6ee 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 6291200373..3b33598fdc 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 f26e9265e7..3cb0148529 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 22e380063f..34dd6ebd45 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 f9472ea357..039e799cc5 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 fa715a7ed4..eb87b13424 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 92959752e9..d2ac0cba6e 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 635e3f8d6c..53cd41b229 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 7a294aa984..fdee3bf154 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 276900199c..9175516097 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 1512ea71a7..56464584e3 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 90d3483af9..c6194cb346 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 1b819dae6c..4c0cd79a9a 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 4c369bb8c8..d144c688c9 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 ae6a1eff49..63231c9a45 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 0f4ec531e9..cdad9cac88 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 4a0a5484a5..a642e8b88a 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 840cbd02a8..1b18eac04f 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 3bcf869658..62721e653d 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 209d1fb3d1..229e00e19c 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 5b288b1193..1f7113ebea 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 f2b01975cf..2ebba46e78 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 91f058762d..440bedbb03 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 4da95762a9..6e0e258a39 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 a9eec45105..4f08067e3c 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 e35b064efd..77521efc9e 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 b02af41d64..f60dbdacbe 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 023d53120e..d02c161c05 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 034016e319..7318cb9bd2 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 15d036c438..a68f80d502 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 55ed85cba6..b7ed51fdd0 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 1ff14645e1..ebb15a100c 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 32fdb3bb54..1d0165c1d4 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 883dc69c43..e66190e2d0 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 285620cc99..5c93815191 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 29705d0480..01d9f074a2 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 482e83776b..c6c1ed7c48 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 a67f933255..7986b13cfd 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 9d0dc31a85..b8ae0a10a5 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 b584656ca3..bac87424cb 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 030ef8b454..65c260367d 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 a1a8d16700..525a07908e 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 a66452e41a..7e75e5c805 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 759dae2e7a..60008579fc 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 1a18d1d52e..880b8063cf 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 345d19f0f2..f85a4af399 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 ad5a1af460..a78c77a254 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 8d82c22eeb..12e8b66d70 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 7cf03aaeae..ca0ad07569 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 be2a52819c..3c63763a03 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 ad44563ef2..e96311dd99 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 b87196cec6..287f1d37ee 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 43ad7f0cb9..af064ada58 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 55d487c247..3319cc1627 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 df7a8669df..d616bdef78 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 8c912a11c1..83694fc84d 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 0e1e6a40cc..289ffef4d0 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 989fa944ce..d5c61714b2 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 d3361b65dd..a4acecd2e9 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 74ace4813b..e68bec135c 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 ee9a2062cf..4389f778f8 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 d1a5679cc5..511d38c43f 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 dbd73f41da..9b83a51470 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 1bf9a55872..f19e64d0b0 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 19ad8553dd..0200be2b69 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 8af2a6af62..a0da4f486a 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 9325c9b1a2..d7d01fbbb5 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 24947f74f0..ed656fdc79 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 e0d392fa18..c825834313 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 056b67a079..75b051a442 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 97f17ac85e..897790d9c4 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 6bf5d421df..d9b13f23fd 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 49dae2583b..9220b4de98 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 efd776dff2..6badc94504 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 76f3c2cca8..c984fca36a 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 84bc66d825..fddd2c3ddd 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 6430d46bfc..0b8e0b0947 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 2268dd7fee..52fa5a4431 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 7b19b0cf56..b262be4887 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 12bb1258f2..5c0415ee8f 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 464f227d9c..5acc86150f 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 954a0f9887..df06d39b6f 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 c68153a855..3fe21b1dce 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 170c6dde42..bc9bf21378 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 bfaa914c07..662956d178 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 7eee1b310e..9d88637352 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 2e951389ce..40ade228e1 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 a4b6d83271..d72063ffb9 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 9df32d307a..02302fc8c6 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 4a7cc2098b..0a7f07962f 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 5fe9f31b34..c1ded852a5 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 72d5b80e38..c86bb1b89b 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 21e8c94ef0..6d2dd65272 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 8c0d278836..efd3ce552f 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 965f87fffc..76285f10ed 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 268c8779ce..b7709dc7ce 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 be900c7b73..6a4a4829c0 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 48d677a4cc..48e0b3845b 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 6090cf9318..176eb0db9c 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 ed7271d28c..1a86369bcd 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 a18d0d2f79..fe97c8e56e 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 c7dc986690..ceaf79dd7a 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 b90bdd733c..b96e2fd37b 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 f2686b144e..9d17f92d03 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 1a055b6887..8f1b3a2d24 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 499c35588a..2367c71779 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 ede0f1c830..fd31b88f4d 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 49e5281326..67e3e82ad5 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 ab7d34089a..5dfaa98dd4 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 ca5cb92c87..a1a9fe9bba 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 badea745ed..ac4098f8da 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 f56636747e..29404684ba 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 52f0323aab..c09bcb86a4 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 029f429af8..b967e21218 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 7beb97943b..d36ada9478 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 a37fc7d26e..f7f1ecc116 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 eec5b6425e..0d09e035f7 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 e194db594b..de12e94e40 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 729090c112..0952766ab0 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 a1e352c713..1487fc0bb5 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 e7e689ce89..6e694323e0 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 92b65e2d98..1d9264d160 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 bd40d25e6b..806eee998c 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 f3d0229843..00b37e55a7 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 ad72b82f92..37436dd386 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 ad7417ba79..2fc2f4f593 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 b625216614..197278a755 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 de79a370ab..19e7acf2e9 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 307bee3455..ea6a7061e3 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 f16e1d6357..4822c4d135 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 728d06aadc..33b123af70 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 cd206a8470..717bb56955 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 7202a5614f..148faab62b 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 95d6c9379a..3eedf9489f 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 606e92ffdb..895e3c1906 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 7862113df5..5040faf832 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 6668f305e8..a70a33de7b 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 2e17546404..a98d2f74ae 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 e16371c4b8..52074cde77 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 1a021223ad..a167b5f35e 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 e019c3699f..5c88d0d021 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 6eeac3fac1..6f17130024 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 038155bf4f..dcc276123c 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 a658b7fcc7..3e486cc498 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 ee82c68f83..8a399f2793 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 6eb6b023ad..2968f12c97 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 c93c934f89..4171c4f302 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 94d4a23ca8..42cde025fb 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 0b12aff532..ced60fd348 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 93379a4e7d..fe52dfaa71 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 8180298d3b..03f9df289c 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 66a0d4a2c5..6b0df4e7dc 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 258c381393..ec89f21d7a 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 0e81fe1b8c..90c3d0d4b7 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 29570787e1..b61f9d2b66 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 558ee46038..ce458db6ce 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 ecbe756e68..489b4ccc0d 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 7df5601966..ed6d41519e 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 767e7e62be..960ba5527d 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 685438850e..e4aef9daf0 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 43c3c85b11..259dcc9c84 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 216678ca77..1791e4d830 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 ceb4afaeea..9d90e13820 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 fd8cd73b06..934a75b2de 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 88223919de..18837c450f 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 899f06b338..e42cf84506 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 9cf34fb3e3..02883f66ad 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 b9cb1a4ff1..4e01675f0d 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 09f294503a..1070f01b90 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 8c62c61f9e..42f96160b1 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 0cee2e6c4f..7b5ae1ac82 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 4a995faf0c..3dbc362285 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 fb10092d45..886710f2c6 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 8e8a6beef6..6e7abd1c87 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 61b82718c9..7af9de68e7 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 b719e62ed9..a37c64899e 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 e6ca3220c1..0c28ae6773 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 4ced5795de..9f069b748f 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 ec2ba32c63..5fa1b06c0c 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 223a0741f6..99feddd354 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 eee8be71b2..bb2cb47846 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 5a8b049e69..63491019a0 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 fb9936947e..ae35d2ffa4 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 bf323da5e3..1cab66dd49 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 c7b8e34b50..1c3b38b47f 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 ef6a39cc6c..314daaa1f4 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 2ecbb20989..069bed98e8 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 488c20d0c9..bdd6dd97ed 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 af573d4eef..7188ab7eb8 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 96a8a3e5b7..aaa4eead73 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 b3a6be37ba..8fd0563b42 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 88b6d5f205..ee1d98c780 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 25a87d2ebd..1fc86ed90b 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 7ba9948f1d..c201cad9f4 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 df11709804..c2952cbb84 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 3a6d753df9..886b4b0fe7 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 9701a8aab4..20b1769e1b 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 403823dee3..e607a185e9 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 abc9772b6e..0b8a34b55b 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 e937592141..7fc903c406 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 c082b43fd7..92f8ecf3e0 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 6a9adc1a8b..41b787e811 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 0bf6e49d4d..f3c46ff26b 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 12fec6d5d1..9d3a39545d 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 acd1360edf..396e9e6a13 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 52ec4f33ff..b0b6937060 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 c3df7c7175..5f0e95448b 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 f4f3d88fbf..1cf2ddaed0 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 f4c87da74e..131e2f882e 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 c417ab5d90..6ae2a7b2ab 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 561aa65ea9..303d23a07a 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 abec762126..4210edee04 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 b393002030..7678c24163 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 d45ff5db1c..b765f28bae 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 c190fb1c63..85ad597016 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 73d3c0718f..c2c925b88f 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 b81eb8cbf2..d73dd56879 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 ee04efc262..67a2374861 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 eeb767b161..e7e3e45201 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 0e44a25182..2906a154d5 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 54a1c55d47..b402f5de4b 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 7a3edfd8c6..1b5df6a77d 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 944a128175..9990d39fc7 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 75f549c08b..a7f992cf17 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 3bdc3f7158..bb25acdc76 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 a3787850e8..0ea614ba59 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 b351227c5b..624f7b66ba 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 41b1e9e94e..101d683733 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 93fd4ec800..ac251e7a8e 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 6d3775bf97..2754b02909 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 8b95f1bb5e..b46d5e6503 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 85376259ac..465f30c8e7 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 78763e98f0..b13dad2e67 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 2a1a58d872..03f1f7c24a 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 abc5d70d59..6d389f6e2c 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 a7200013c5..eb75cbef86 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 1b3aae1bde..b23a76930d 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 ca86ce88b0..488de41021 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 6d8cecb5de..026e514242 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 eb2cba43f5..2dae3e69e0 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 1c6e6a5a9c..64d989c676 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 250089ccf4..7332cd0d1e 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 d27bd5a0be..a6a3502ae7 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 0499647d08..4ec82f12b1 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 7b4e65193a..4213e5287a 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 f018c2b28d..1b76d55ba9 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 bb20b23428..8bcfe3dbaa 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 7128598f56..98ff540adb 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 14db824402..eba0ba978d 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 b4bd943442..7bb4f45f40 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 8744202ffc..8a9ecb7f23 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 0a7e770a61..8bae1bec68 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 267ce203c0..90d90f8eb4 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 880b9137b4..c73555bdb6 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 4b77cab41f..81ae4979cc 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 bbcdac4eb4..d54daf980b 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 b10c8bf5c0..79f9b5f070 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 e3165fd1ed..66a0b6dff8 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 8df2ec8bba..e7ff068059 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 7179a6a935..552193bce9 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 ba404b79a9..ae1bcd01b7 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 d963828e23..1bd13b5c41 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 2f0e741000..b0c1fcb176 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 f6e581abbf..cca7e2aa6f 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 6201bedbf0..2ebed9d6b5 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 edef57a45f..4a7f6834a8 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 aaeeb7b662..92cc7026ab 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 0af6b9dab6..af47ff7cdf 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 641184936b..b4aa143ca7 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 785a8359eb..122c033c2a 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 0a64fa9d5c..5291f6b93e 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 047f0a20ef..d3a07140dc 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 461749d3b0..f276b998c3 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 dfdb2354ed..47af01accb 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 405ab8f59e..6397c41890 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 3731350c32..781ec9b163 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 80d856564a..c2da33dd57 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 44a86b7d4b..06346d8587 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 9c40f299a8..9d5a8651c3 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 c9c58e1220..cf7485f405 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 09617817e0..e360e61705 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 e62c23df12..a1c14206a4 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 32f5a97e7a..1fd7b60fe3 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 46c9fd7f59..0f0bfc058d 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 d484de9bfa..49a6d85406 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 787fbda7c2..b13a9b8416 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 97405d8801..f3603c209f 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 3461789b31..23bcf9d1aa 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 f1f81bb034..0796c82838 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 585ac37172..90984977de 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 904e2862ef..b3161c8502 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 2be619a100..43084f97e7 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 29aaf78943..87e214e67c 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 5d348bdb3e..cafc69ecdb 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 fa92ce87f6..69e53ebe84 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 f26e18cb42..8dd944de99 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 5b6ae5320b..bfb906db3c 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 4acb9fecdb..a5bbadf8c3 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 1747c12875..0240a3e9e8 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 6807d90825..55a82720e7 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 0af2cdc588..86a793f6e7 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 8e62d0e313..5c0fdd2b87 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 fc519a04d8..baffe5c2b8 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 305c42c2c0..207e46e14d 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 b33b11051c..e7d861a044 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 2be30be4c1..e6cb2979b9 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 e27cf7d99b..bff5b2dc45 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 769e29e0bc..85c88d73d0 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 a7629182c0..b03e3f8d51 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 e6edc3ba0a..d8bdf90a5c 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 ef66f8bef1..bfda041524 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 d7d32fbbcb..a8ed5476b8 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 1db38c6a79..3a81e78344 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 ba8d8129e9..a0ab1aa772 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 8404eee4b3..c8a81e1e08 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 bf1dc4749f..97aa0fc19e 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 c251660a3c..6d331530f8 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 85ea260894..fc139c27c8 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 fdea9b49c2..c9049cb127 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 bdd0dcc29c..d08e939551 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 a589a53bbf..242f0956f6 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 2ccb1ab074..328b929a28 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 232f9a6c05..64815f1b40 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 d523c3c700..9fe059aa58 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 c0b393de2f..95485d7369 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 d3a73eb60d..fce83e9006 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 73b3dd83f7..4d8afd4fa8 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 410a930728..04a177138b 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 d15fccd1ac..f1cbaf23fb 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 4b0cb0c23d..37ee00a609 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 b5f34a2b3c..6fc746cc5c 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 7b0b604ee2..1245b78b2b 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 03c7f9b297..a087e75af9 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 676f7d3332..93ca42259b 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 8004641b01..4f6d3778ea 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 6d33b0bce7..fcb859a005 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 c62aebd712..e3ede2befe 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 c28c870dfa..fa4f5e0c52 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 8909e74ea1..f29482c4ba 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 dade2d7b43..d5870f707a 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 1c129a30e9..01a3c13618 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 e54356e502..b5b15f6848 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 6b96c767b2..84d2c7504a 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 a55b27295d..18daff2096 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 d7d7737f7b..f8265353fe 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 a5934526dc..ac540a6f2a 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 8fdede4957..29d4ca0d6e 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 a12c0ec032..8dc7eb1093 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 ab902e9c40..96edb2fc16 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 6d754ec983..42b51f886c 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 8f5d998050..96174ba832 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 247fa8f3c9..f5616a9901 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 f6a47d38b9..36d605cc7a 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 7076c485a9..09f115641e 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 a90b9c3c13..84ca4b7d1e 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 145a521175..ecc9b6a0e1 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 8b5063215a..c12432a672 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 772ed0ef59..2f60ff8099 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 1cf62db931..d47fa201cb 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 c5a00d3cc1..9f3d43c7c6 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 d031541862..a3743cd44a 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 1d5767344b..bd61cb95fe 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 ea57f4cc72..e6ac07f1dd 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 7df131a2c7..6a0f1c57cc 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 5e7a7b8d26..994feef063 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 bffa7c9352..05123f07ca 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 bbbe7363a6..bc5dd004cf 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 31c28466e9..0056d753c5 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 14322dbf6f..9953cba8eb 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 1cd1e67906..3c8a5acc7c 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 a52376f545..10abd26cbb 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 8bc459c489..ab95b1617d 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 1674ca4dd8..0cdc43120c 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 885098ebc5..86b9f72b80 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 9107c000f7..b88e910bfe 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 1ab4e98c32..1b84f37a81 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 a1fd04ddd3..f247a625a9 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 d582947f3a..e81e1c9b0e 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 efac3a3cc2..3a7e112d18 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 cda679dabb..c1db3f6f9d 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 d9b880a629..193d0f66f5 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 eb8b155bc7..62ac6f1f76 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 544ab2f217..775977e52e 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 db826fe244..4bb02168d2 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 5d9dc81a98..b842c0f728 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 fc24865416..450c1f8866 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 ea705a8141..69e77dcad7 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 5d889e9351..889469c55b 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 6327004c75..bd19b2bb80 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 14de79c381..7e1512276a 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 154d9a5e5e..4130ba6b34 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 15e41dd4dd..82e8a861be 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 28a798b991..164efbec50 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 a07efbfd65..b2977f8733 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 9e874096fa..77d00cee76 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 18f6e6b137..a1b698c7fd 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 99b6ef8b99..ac41f7ee0c 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 4fe948fe6a..34e34e0ec8 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 ccaa94ca8b..52c2017a3a 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 9a444e36f0..236cc9aeb7 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 31b17ad9c1..e155f3ed0c 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 2f148c4d34..27e37032a7 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 c8bdd24d75..90ebca05d8 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 f02b837f13..6edff1c5a1 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 9704a75f8f..d5487f98e5 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 50b6dc9309..83dff8b30a 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 7e9817877e..1bb09f7e97 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 15e60f0d20..681e1b9c0c 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 5158a2d54e..48d94f1081 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 c1f77744a7..36be7b9fb4 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 45a684ce85..7c56dba3f5 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 69918d86dd..c1bc71f50a 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 3df338c8bf..73573f66a4 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 09d5939951..b23f46a9e8 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 14fe8f047c..4e37ccc36a 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 c3bcc62cd5..01222f9696 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 17e3588981..a8f174bdc8 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 50a6970077..f43881bf63 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 d4398ec3db..aebebec5db 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 73c4299e33..4920533bbe 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 9172e36860..ef7d4b38a5 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 7b4f0a468a..eac2818913 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 9f2fab7095..cda399c45b 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 5d27cea039..582bd2525f 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 50e9b5686d..1cf7a375f7 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 9ff31e4b24..f8d15d859b 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 d9033e47ea..a188730b44 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 b9470c5b63..76b3d930d6 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 8c3b464e74..4a5743401a 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 caa5383322..ee2a34139d 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 f207f2ded7..b481f61a11 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 0a7b6c557e..ad44245127 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 5986e87fd7..cb2a3522b3 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 e4e8f55b79..6e1fcd0014 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 baaccda092..49588abeee 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 120d7e9d01..6a53f9cbaa 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 4cefcac495..4ccf91021c 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 e37f0c1b6c..b040250632 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 1c92b47398..bd7c5bb83f 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 d5634d5ebf..0693e3fb83 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 9df8cab7b1..284e4d814f 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 d826b487ed..8583f2228f 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 19808a2fd2..99f8a32705 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 ccf4ac9841..b655163a21 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 5b2f6b9625..55a45f193c 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 f06d8a10ff..18107831a4 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 7fd031f2ba..919d00f879 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 b6bbce12dc..95b74412d4 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 0fe82c40c0..104500998a 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 53b8e9b50f..01887b1ab3 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 0272678da6..707f1c5f76 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 fe00fd559a..10c03a9971 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 ccaf7fd478..1edf5f1f37 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 8ad3bbca06..743150d0de 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 5e3e2269fe..52252c245e 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 379bd08fbb..2b5f8a9c1e 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 bcf09943d7..85388c759b 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 bac4d0ba40..3c601fcb15 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 60787068a8..b09b4eebc7 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 2a6bde5e0e..77d69d57be 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 56124d815b..5f6167ce17 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 e6a5473a0a..f11f46f205 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 0cc36eebcf..3e866c593f 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 1738a043cf..fdae3e344c 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 3a5c056ea1..66c3439127 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 7fb96ef09f..d423c1cb7e 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 6578dad8cb..aced860b69 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 2a8bd01d8d..523c41fd88 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 b425bb018a..17b8f4d346 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 8e1598addc..9d2e39b3c2 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 4fe73244c7..a10a26b499 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 aace06c272..8e5e5cc468 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 b612c67bfa..38193e6b01 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 056f5eb1bd..f47177c72b 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 6db95bb1c7..3e49841b45 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 9bd0b5a817..0c6a75b026 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 fb929b2996..d1431a226f 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 8bd4969dc8..6dfdb6e7d0 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 eeb945c3dd..74bb6e2efa 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 d48de14289..b2aa647efa 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 38d7ad70dc..d4c148b543 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 e76a33d1e3..d30a34f207 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 6705a9438d..8769fdd7a1 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 c114e4b862..d873f03b76 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 cd6be024d2..8a4f568edc 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 af404b25de..26205e7049 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 9fa219d47c..94610ca31b 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 46d63c883d..866037ac40 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 60faf740ee..704d219ef0 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 0561c111f3..6b0e7e5efc 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 365873cd32..7642307578 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 4c99013a04..ec2741c1f7 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 96ff388585..71acaa2698 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 1f22deb794..a4b22f591f 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 23e3094226..cf17ade170 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 919cfcb17d..3a05191e09 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 d7d7692d6c..1ac032298b 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 efaafacb4d..4776424375 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 4a5d83801b..379517eaa5 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 1a7a23d32b..56b74dd43f 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 3551f69e1d..f4437aa829 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 a825a1c79d..746feb68b0 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 da85911dda..3ffa0fcbb4 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 e9d7eb8ab4..d5d323e955 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 a78ce08765..6a9beb2ffc 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 706617e283..ea50c9843e 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 4bf79dc98f..ad8bc95baa 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 085d54ec06..e4de16dddc 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 0a236f5f3b..f06a62e8e5 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 22705a9e0e..18983291bd 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 9cc604ff92..6df25fe7e3 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 27a927edfc..8f61dd41de 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 8e56e21a9a..90459d388c 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 9f6d039cb1..034f8f694a 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 f02ba2b7b7..4278813f78 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 dd7b815ee0..06929e5e65 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 e0eb7e4a26..15ae5a8f88 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 5528b5b627..1234ddf11b 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 89fa1f4ee2..042148f528 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 08b93ebc9c..f3309181f5 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 b5c008b885..1f22c73bf6 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 ada0a94943..321ce6c74b 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 fd932424ec..8fee303a09 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 f82ea2887f..e0ce6bbb49 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 2b24f341f1..4936e59979 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 e6fe03e73c..2928dc10b7 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 4e037a66d4..d47a53c7fc 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 42f8866ac4..d1cb9f651c 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 15965a1b6d..076d74fcc5 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 7cd7e1435e..5e64ae9d86 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 b6506897ab..12869d7520 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 1b969d69ba..245b38e464 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 b0b4c7d347..a766bd1711 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 e2f1679738..096199069c 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 76fc53cb9d..b10d66d9e2 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 1d64fa5bbf..fff73997e2 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 b432796acc..c9376e271c 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 120804f900..788e11a83a 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 587977cffa..963ed011f4 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 451d8b2485..1f335de2ec 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 484fdcb74c..7f25a58790 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 520e1df387..27ef760154 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 ca6cd656db..ddb0c8f673 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 f7b5b2342e..4348764638 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 a008ae68f0..834739b6a3 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 b0f496d77d..a34c6d1fa0 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 1fff0ff173..eec5aaaee8 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 0fbff48ba2..ae4d181cd4 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 f68d4d9f91..d28609a12d 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 0ec74a4bc3..c259b22384 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 09e12061bd..58d8b03348 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 863af866b5..80acd48618 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 de0b6161c7..361c70d8fa 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 db6a1ecad2..b45a68c0e0 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 026d846621..d1a5dd47c7 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 e03d381015..4f389274ec 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 a8ddfe9b5b..c718ab15c7 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 c167bbeafc..dc2af30695 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 fde3c5b00b..542a42711a 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 f28353eb77..e16aed8c17 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 edd1561b59..3835764a35 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 93428178fb..fabafc7c59 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 713a280ee7..71b10fbc48 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 a4cb24b42c..297bebb432 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 4ef3fa84ad..a3a528ef68 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 5cf0a5d9f4..331ee6d453 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 0cb26b10c3..506520e6a4 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 5f569be1ef..abd0293bb9 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 9938638d98..add5deae28 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 1211f177c4..50fd51333e 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 ba00aa26fc..e8e6640b01 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 45cbe7384a..ae174a1f7d 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 65f55d3e87..bec77b3de3 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 b320e4a142..028d4451a5 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 e611c6520e..5dd820a171 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 e32b791482..9579c7c955 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 e369881266..a7e64531f2 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 b8e834d782..ee307402d4 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 806a9aef35..70a5ac11b1 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 e6a5d2ffbc..dd983e2d8d 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 1b74d80959..75dd6e45bf 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 2bbc166bfd..5bf13fcee1 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 3fe57af35b..30a978122b 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 4b54c3c38c..699265c146 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 d2efa9ba0c..6640b293c0 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 5ab30dd92c..5cb8b5c0a7 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 5540ec17e3..3adad56bd6 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 a5d7e48ba1..9a6d9aaa0a 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 d14febf3e1..2d4296f1a4 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 7bd9e41b7d..b7aa010c4a 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 706267da29..a86ab948b8 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 8b8ecf2186..afdf334f38 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 a212add0ab..ced0432e2c 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 e552b1ae1b..f5a78447b2 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 1219252a7d..7daa9ca8fd 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 d12faa3e17..1329fd95dd 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 9a807ebde1..0f59a533d6 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 954719b83e..d6ecfc5364 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 93b031dbef..94673d630e 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 d20e543cb3..15acdb8528 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 1f8b8b9614..0e175aad77 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 5473516938..c87cf72d36 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 44ffcfa94f..3b234e764a 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 a856bec721..c0704cc602 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 7e40b0b6f7..aee352e7cb 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 12cfc9ea93..b432f35255 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 681ad16520..f70f4af87b 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 5a91421a4d..df8ab5d48b 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 04435e8cfb..aba240fa43 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 28658c98ce..1300861ed1 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 c30391d81e..8400c9d750 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 d61b21a1de..7d3772181b 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 9c555a56a7..40ff862576 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 8dff32e765..cc5af75763 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 c5a1f0b995..ff9e87e9ea 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 9a1154ee0c..980a9dd66d 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 96d9aca699..01368ead7d 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 34282af42d..be28411898 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 ec5760593a..3b99523df7 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 62d00c084a..2263e95fb7 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 ce5fe8bdc7..7c7d96164a 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 edebfa49ee..53effeed2f 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 ca12ac6ed8..e16955e5e0 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 5fe5e7a5ef..9441e80729 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 800e7c2906..c744961a51 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 318eac0c0f..7a9b7098d1 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 50f1669eef..7577d94d41 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 880b50aa59..5ce8e43894 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 36c61d0b3e..9ed398b330 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 5028a31c1a..cb7c709d7d 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 827d3231a4..9ae9bcfc59 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 efb762b445..65fe1474ac 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 e935a89659..047d6531ae 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 6303a24721..34eeb936d4 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 bfd0e73e5b..98f3657a62 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 a7b31d3a7c..8e13fb1573 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 280ec7b19e..767c6b768d 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 41af99f41e..a750c543b2 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 a9923aeae0..93dff07656 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 cc658b3352..8bf9a5ca02 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 929304d8dd..e3d337ab71 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 b20cb846d1..8bbf4413ca 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 b60491ecf4..a0568e3d2a 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 ff8b017180..bece63255e 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 d8bf67b1d4..3e1dcb5b30 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 d7e54e87de..03a359a90e 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 85fddb3c4d..a46e997183 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 883dedef74..43a9597981 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 2a8375c71a..1577f8889e 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 dbeda38049..9529d533b1 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 6ad45368ac..505bef0681 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 987e883724..f81e8db066 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 db18013687..70c370bced 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 86dc9a1bf2..3f0d94434e 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 3202afba8a..005187a08d 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 e503f0f081..f7cca9e0d2 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 8c02f5737b..3e430363da 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 d50dc6beb5..d6ddb57435 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 295e6f84ba..6e2ae34b4f 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 95e2f2b0a8..b7be5c8f67 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 9e591cfabc..77ac3ab0e1 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 483a69e196..fd6312a5d7 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 2c46c8de53..bccdc8cdf6 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 43d949c9d5..2249d4116b 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 ff7d4ccd9d..bf019d08f0 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 812b09eebd..e6116545d0 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 1d9616f652..7c5786f069 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 b43b222910..2d6bc2d794 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 de26149a14..42f8341b46 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 e22a49f801..9cc43ddbcd 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 64f87583b0..010651cd55 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 fe977cdee0..aa0a93f17c 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 915f8ceb49..dd19b5177f 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 ec6d706156..04d0ae7ae8 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 bdd263031b..b7cf2a7b81 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 8cea958e3d..0c75e806e0 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 838e76474f..2b38e10861 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 487cb5f886..be4108a742 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 ff2efbc2e3..b57522c2f1 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 6e558a7ea2..e8bbc0df75 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 d6261f2440..ca3616b801 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 b56974f3a8..851abe5c7b 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 ef74459749..f434c053cf 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 3a4ba44ac6..341ac3c934 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 fd246e8f80..b38853051c 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 273484ea94..55f6e87fe8 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 b521d83d35..fcd5a727d3 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 db825929cb..74243b0af5 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 4ba9e24406..0eff251627 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 08aa01a140..471c40a72e 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 f54469d2dd..cd802a870c 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 64c069bb4d..c18365eb2d 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 6375689f09..9e5a842272 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 416a752033..16bf839aef 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 3eedfb5f94..811b0a8235 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 7cc57689e1..5fd986aa46 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 b65f602956..bff5afa00e 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 432bfab989..a6f0ad3b95 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 2a8211fbd2..451bc73bc9 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 b1aaf71133..06595ddaa6 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 5bcc8f180a..c4cfe115cc 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 363c71c666..c6a184c44f 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 94e498936f..f7356c6484 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 ac000e2907..68b3b6988e 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 218cf1e973..5f2682ae5a 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 329512899c..6fb888a15e 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 7ec6217e9b..a97630c514 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 56e374ae9f..bc18eddc9d 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 875fcb363a..ba9d3a11e0 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 116b34a5b1..5d5f30bcb7 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 cb5a289613..4e4e288ad5 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 89dbbdf369..070eda0b06 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 05b2104e3b..27f722dfab 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 2930474c64..59bfb9b43c 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 8acfb01fee..3e38225cca 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 97b3fb0ab6..98d40e28e9 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 2ea8906e8b..ca8f3a4a23 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 8ef4451d9b..637303f099 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 04e412b668..2db638a5c2 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 3dd8c3bb4d..d13a13eaea 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 6a8cb8d7fc..e86f6c33dd 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 f3e27441fc..151dc1ca66 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 7405b996ab..7676865f28 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 eebf22eae5..7998dc4102 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 a66caeddc4..cf33be475d 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 dc54926881..1ae3f0eebf 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 f410e3cdc1..48a938c040 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 62a49bf8e8..dd6d06cb9e 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 25c40089e2..7a0dd9b23c 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 325092875d..d0540f20b0 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 56526a852e..5ccec1188e 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 20279484c9..e9493b5ead 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 663792cf25..fcff31c843 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 7b04506e7b..0f1d5b2454 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 da484957e1..d43c1ce5c5 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 75de22f82a..bd323dbfb7 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 499743083e..0f13d85cef 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 f8f853d5f4..5beedb47ac 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 8e1e5d7957..b3ffa200ba 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 f8d752ba9f..d992198568 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 6ddd015ea1..bc8d99a2cd 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 8d13696fea..178ed0e434 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 8000d90489..9d36455d70 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 6429d07020..322d9129a4 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 b1dc9853e3..f15bb115aa 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 c2b229b798..8cf05a60e1 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 e7aad087fb..698ddf21bc 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 1985645500..eeb505292c 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 a4d1650fa7..f08a1c67d4 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 e0b771bf06..9eb7f20514 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 4160ba9709..51a5965fd9 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 bd9fc67d72..81b63245f4 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 464f7d72b0..5e238709c9 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 2665224c3b..e28a152eb8 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 eb69695c4d..d6fe2d9b96 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 fba50883c8..5ab3a80d00 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 81c84ae44d..738c9add05 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 2a2d88fa96..e37abb0a65 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 49c13e856a..0e3cc1a928 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 047bf7e4ea..a7cac25817 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 bd357b1cb0..63cda146b8 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 c2a55a1d0a..5a977fae75 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 e12951980c..67af16f00f 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 e85c9fada3..ee735b2caa 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 c5e6978163..9659bd6458 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 63f8a72f69..0862e6e3fa 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 94e3bc90e5..b73a5d287f 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 c5e3c0689e..33c6ce24db 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 2cac1bfd49..f6af38e7c3 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 55295bf7fa..cdf03aea86 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 8e7a233212..31da156b90 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 f2c539da5a..64650e3cc7 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 46d6071901..81fc8598d5 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 f4edad89a6..add0a2546b 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 04b25885bb..63e7abe3a0 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 bd6f62e424..12bc67774f 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 d4b8c956a7..821d28bbfb 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 6573fd964c..61f02644e3 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 6b8670d219..fca38affb0 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 882ec0e077..8d61b28697 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 1ff095a579..df1034d3b9 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 2f09b776e3..e251c1c239 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 9bdc817152..35879eea14 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 7c58225f5b..36e2eaca22 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 38262323e9..776d4925c6 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 179501afeb..d9942d3712 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 4249f41c52..98a4b3165a 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 d89aef620d..b7e1912586 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 ff3f1172d7..038df3da46 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 d1d312526b..18644ad453 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 1b7edb081b..3718861ff0 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 0c45e8d45e..0a4fbd9f64 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 3188986e95..500e994d9f 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 9c95c1718a..ad96a0d640 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 6e92501455..1701563814 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 9c1ef91191..c09060aafa 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 ce41f33b3b..8d7727daba 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 8f0480d71a..371d7c1d9c 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 5c786de2ee..8da292bec3 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 cf00d82edf..374805c500 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 e5a48a0dfc..d80aa190e8 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 22f4e9213b..0ea9535ccc 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 12ee6140f6..cc65c032c6 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 c40d113c67..b7a08f91a8 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 79a1f41750..559ddef094 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 177bb0a7d9..78cca670d7 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 37fdfec8b8..12b71a391d 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 ec68580357..dcfe12d291 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 94240df80a..a80dc6c0c2 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 a21b65914f..5bca2245a3 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 e29de870c0..5e3e563098 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 c0ecd1e91f..c33ee72744 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 3a2957c53a..b3bafaa572 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 a8e02fe465..7343102795 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 b3492d190d..6b27f4b25b 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 c8ae926de4..2e374cfbc3 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 e6b68cb681..fc3d8a8be2 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 bb74a90b41..2aa65fc5a5 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 0edfbac98e..ecc497a05a 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 2d827a5a47..03b8ceec62 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 1c38246b77..90d525c677 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 d919765ec8..a90f16bc86 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 97f4a94b22..590593fc45 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 cff658745d..d5ae9bc1d1 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 f586d94d50..9b07a8b7a1 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 b9ebcaeacd..ffbc672c34 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 aacd18643d..94a986346a 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 71bd69075a..d2c79a828e 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 8628551d7e..299ba08b93 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 ab43bbddcd..a69335a229 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 1cc89aa73b..089fd09e3e 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 78bc0c95a4..a27adc9b60 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 6a439f21a0..1e2b6af85f 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 c17520a602..b067d239d8 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 a5393733e4..b221e6c7b0 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 9313d119fc..8a6145cce9 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 c97b40382d..1d5c8857f7 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 1fd6bf6863..629202c442 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 a74906b57e..82b35d8e1b 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 09096b3b8e..44bb5d8cff 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 e39e5cae96..fafcb89823 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 93d5e55a26..56bb4711cf 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 37e9b24013..6a5ace0cd7 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 ffdd252177..181dab18a2 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 bf363e24f1..7dafede58d 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 405ca00bee..dcd127c460 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 bf3e25ac02..f443d23ea6 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 1fd2c12c57..faa463cbac 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 6da29600a7..2f6edc3b8c 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 c6e8a45cdf..cafccc43fd 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 0fef7a2147..490ec85d1d 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 84871efcf8..299d220b0c 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 d92900ff29..f776f9c754 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 f2955d027a..8650d6bd70 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 8e6fb7ff3d..6c465501c4 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 79002ff9a0..cf27f05ed4 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 9c91bf5396..2427519f28 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 05caac9dff..e1a92033db 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 7429ba2593..df5769fc33 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 5f38a3ab36..8bd6601b50 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 191e0e9752..32c3e88f54 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 017179162c..13804d907a 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 5fcd2f741d..6ef13c579f 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 1105021915..2cc799c3f7 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 ba67f87e30..7228c63f02 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 c1b15be85f..b183611360 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 6fff42d74c..7155afd44b 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 baad34f5fd..86598d8f30 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 2bf41675a1..698aac63c3 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 c6206be87b..b3613f922b 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 88b9ef5782..4e07dd080b 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 5538001acb..ab5fc8808f 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 2c3b44368a..b3ae0d7f91 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 4cbba6e38c..0ae34893cf 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 cbcadf7376..9d20095768 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 4bbfc2d49e..2375ab0d0b 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 1733af3b2e..83625a5f9d 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 2fb72cb8db..df84c91b7f 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 0cff1068dc..d3c3337d71 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 e87d47807a..fa0f870fa9 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 8ef2cec6b1..a1583bad24 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 de77b07c24..78c23ca29c 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 b7c7ab0f93..b6be8fd42b 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 03d4ec828c..6168e316c2 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 f1ff00536b..b2638ede3d 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 91bbf1fef4..a7035f3604 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 69779fce0a..7a5d73d966 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 088651cc5e..fcff75bf42 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 fdc3cda516..3d516023c2 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 0c785306d9..c1eafc5438 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 7ebe0d2519..536b41a2e0 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 1f73380d97..6ba2f36717 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 9f264f1a95..3afb9f8e2e 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 64f4576827..7105efecce 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 e5c4ad57bf..ef98cb2a69 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 26681eb6cf..457ed8134a 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 a2dab1264b..0be27c1826 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 7609bdeb6c..76b58df325 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 d99f913e92..903d5b699a 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 55b9abb666..fe853cad68 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 5fb6e354df..c051b2b1c6 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 8f96c31ed4..7202b0ed66 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 bfba307bb3..6c64fb3e57 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 ee0509a8e3..8c976d1eeb 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 19b336e025..8f90079100 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 f006cc5173..7edcce5150 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 79be361a50..953015f424 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 2cc6cdb86a..69eec87b16 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 f208f5299b..cf59411c8f 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 1c9e549ca2..48c187d1c8 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 69a0c6dd0b..3ed5a45d21 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 8b79ce1046..068f18b557 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 9f68a16192..1ce08c4312 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 9b20cce08e..cff1bfb466 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 b4cdca95f5..77c25dcd98 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 082493fbd8..30a36598af 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 a229081d52..826ea7bf81 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 46e0b11b15..898e28e86e 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 380c6164c9..a22e6a8c35 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 d6c8210538..58ca231aa3 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 f39962e7b6..c9e4f49620 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 c1119e29f4..79cfa75db8 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 70d184b96b..8c1cc0bb63 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 fa40e90bb7..c02b24e37f 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 c29bfb5426..af3535fd62 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 52a0ace5c9..fecdea57a8 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 772110c6b8..418192ac9e 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 e01481f1c4..409bd48c68 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 d98e4225c0..34a2d9df6b 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 e446e2566b..7cb736fbc6 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 4e8d5db957..17c0cf8219 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 f6b7280742..5a57369cd4 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 3b229b8093..00df81d53e 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 d2da331ae3..22b3bdbc3d 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 b05cff8a7d..8e60f15fd6 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 51c6ba1476..f6b9ec493b 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 86640e27ec..dd225c652a 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 1bc4a4272e..65c541d8cf 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 a6413fdc7c..3d4f6e8481 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 2aadddd12e..594357e7ec 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 c3ec26d382..7f335ecd35 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 a34cfb6ef6..5ce4cd060a 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 5506cddf74..e96035c1d3 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 529bc81ef1..5475c2f965 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 1cc0f256fe..9e1c2034fb 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 7344aa0097..718ab28047 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 5e41664270..043e435ea1 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 3b7521210c..fe5fad51cf 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 a5c844b021..6fd2944eac 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 e05abe5b56..a07b66dd3d 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 5f55e2b439..60f28f340f 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 6225329850..f79aa53cb7 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 c871d4c7d3..606bf0d30b 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 0cf411ae93..f5a621466a 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 0c36754e31..3ae3eb0dd5 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 80b397e50d..fcd6508489 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 0ab0ef0f35..8587de1d08 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 7cbe9524e7..787e758e61 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 ee11c67bc2..b7388de18e 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 796c396d70..fe7ecaf9d6 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 fbd6899408..a1c0d27b38 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 cd2f1658cf..bd93880dbe 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 f349e75fe7..8b9167cfd9 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 db0cdd989f..5c7f9a3ab5 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 3935f785b4..9ae604984b 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 243705984e..bfb13ee73e 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 e10eebba38..2b141b1008 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 f43e61bfc3..ff463f936e 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 dfa0f40dae..199a58b87e 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 1fcbe6007e..8abfae44cf 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 09a6527e3f..5aff306d2e 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 991ae8e41d..9ad1db892c 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 3ac5fa6ec0..e6e89aacf5 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 363aac28cf..ea2c8e30fc 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 49b75760b2..3d35f644d5 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 d8c8a6d77a..39d0752b0f 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 9e5d399c1a..f1ab1b0f0b 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 837e057529..95a4bb5df0 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 adddfc1a23..118042597c 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 e817ddeb6b..1be3a02752 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 9020b3d0e7..ea2891243c 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 31c0287cae..a6761f651e 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 d8d6124cd2..9a49223e00 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 380b6ae81c..173c02d8bf 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 611331ec79..65317e43d4 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 7312f60869..0603b2fd88 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 66ce1649a5..585aef435b 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 4dacf71b6e..d91484e228 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 6617610ff8..c5adc063af 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 ae65fa1fc7..f0833e84cc 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 1579b454a7..c14b378d33 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 5ce904d7e5..922b4cceea 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 06/13] 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 22c13f75a1..0e6cc34b11 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 07/13] 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 2830bde959..c599a05e59 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 b61da8e04a..f2e8a69c9e 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 c55d6f7a02..786b3d3f7f 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 91d20dff7b..e31afd42c8 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 7f5f395817..55d2c48ba4 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 0ae5b24ec3..3ad453512b 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 2b1ac5d6fc..2541825624 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 4f225e2fb8..497f922481 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 bde2160833..67d335f912 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 c10e3a7cd4..ea0ed54473 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 adc205118f..67dd4298a9 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 d14bf2c3cd..68bcfdccb2 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 941efe1339..1a274ef54f 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 b49533a4db..4073bc1c8c 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 7db55dae7c..8aca04048a 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 20fa3789ad..cb39e0da3a 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 3271862fc5..88e91e2772 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 9addc05f1e..84d7a29672 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 475b4a66ef..6a6b81be32 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 587a7cca8b..06f11b12c3 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 81241ee4e6..e5bda439de 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 205e7fdd20..a5fb27bf85 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 8363ee9ce2..e2941661fb 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 8a7bcf4804..27d53a7c18 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 15b029d1a2..2d121d613f 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 127a4af289..13dad85599 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 62895a6e69..7ae636ca08 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 db6638e5f5..cedd86dfd8 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 04dab27a69..36e501ea48 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 a3fd1622e5..a144cb7c44 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 31bf3fb27c..6cb4ed5e2b 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 a1431b9abd..a3ffc4955a 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 2f5d713455..fcd94f48c1 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 4cecc80db2..14b705eb08 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 172959c3a8..1f7ed89d96 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 fc36517540..15430d6a60 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 2d2db3f92e..0c799b67ea 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 1a7e69905a..d2d2d65c90 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 aaa97e6997..584d0cf982 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 cbde4f4ae3..036515915d 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 3dc63e9d73..50a11f53fb 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 743a8d07f4..22456c1fd4 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 1316e6692e..786fd6bbe4 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 6895448142..30ae9edefc 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 c851457f4a..7f2e6bc736 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 3ff178f718..caa931091b 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 51c4115145..76f28b63bf 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 d4ff403b16..0b9f9e8463 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 07dd546876..3e259b1dda 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 9b50b4205e..c3f97391db 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 b95f3fb73e..afb75c50f8 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 3ff8395571..22982a2b8d 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 6e2259e702..feb064efa4 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 9e7e4595cb..ddba9652a2 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 1b3726a497..6abcd12864 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 e5415877fc..8d307ea886 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 eb74a49eee..df28f9bdd7 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 082cce85dd..c9ada6b141 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 36d81dea2c..d2b32dd022 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 34cde5377f..82472d935d 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 f56829591d..8cebbeb893 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 5ae8d80971..0e9d217060 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 9699279748..bb2b8043ab 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 254515b9c6..bf4eedd7cf 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 ae15c76e55..0630af41f2 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 260cd9a80f..b8de6deab6 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 41628262a7..f56b9663f8 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 52ee7a986a..f6eb24e9ab 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 fa014fd227..85ba6a57c0 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 54609dd790..a2cd1c001b 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 4f659dd252..60df4e0fb8 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 0975d77012..4476e4f832 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 86894b3cfc..1e7f65d101 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 f42e67051d..5b4fcfcadd 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 cd65850976..d06e2ed601 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 6706127748..dc82b03450 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 b1405922f5..528b470e5d 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 190378996b..5b6f63eca4 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 027e3f4533..925324e841 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 aec991a420..520e868aea 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 5911ea95d1..4f07c0ef1c 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 1ecda4776b..bf311da7fc 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 fd764f1880..704ed38acc 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 998fa70986..6ce63a09a9 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 68a742c002..ea33805dca 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 540c0f06f1..f0ce21797b 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 f7e3f948f7..b6ff262d9e 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 1964fa49c4..7542d00534 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 ff918ec43f..fc2db6fa29 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 08f30dd8c0..63fcc9239d 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 b33fcf92f9..9b3f3c3c37 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 0fa50916a2..9fadea1154 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 d2fb90828f..214e36101d 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 7b4acc2aec..1bb7824db0 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 1ee8899b71..d5f67605ab 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 6f49c56070..dc2e9d5141 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 0cdd50cffa..d2daefaf46 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 e421b4d8b2..3f37fcf3eb 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 5cbd54a373..e78d38ab0f 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 272b77311c..c48ee2b653 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 51100b3123..af64dabe2c 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 a71f06d480..cfc1d06e56 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 84ca4cd8b7..bb026753b1 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 9e8c05f4a4..4c0f263c54 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 b276ab5851..b065c1c20f 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 8c497e0bbe..36be78300d 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 2a0d78a720..15d04ae4a5 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 f2d2e54412..b131f632a1 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 d822dee2f1..c871d3bf67 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 86dc879aea..acf8c89461 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 e7f17b68cd..6113cae12f 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 a6eb460798..3462627862 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 b240152d53..9a40ab2b2d 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 4fdf5d6071..2793fd9260 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 3556401fb9..af70a3f3ef 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 f3eb01b979..ad68b42989 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 01d87f2dd8..b3efe43f0f 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 67c82d4688..6a97746c6d 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 c397adb099..5e340b4af1 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 53730ef39d..c68f7af67b 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 a9d507a855..1c21f0eaac 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 747a459d02..f1049e0052 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 418b5ecae3..bd40b59b61 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 f78c95257d..e66a0f6881 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 c79e3b65c5..fbcf5bd579 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 565011b975..8cd6c75a61 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 0f9932424b..6e1a5f7e5e 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 527ee24f45..8e81170d75 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 e7cefeed2f..f9fee8ecc6 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 ebd69e124c..eb190ec452 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 94aad4010a..0973dbee46 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 87c8d42782..a9d496a396 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 145474ca2d..13b6be959d 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 00cf297de6..10d9c847c5 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 c3fd3c7f31..17f333432a 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 ad2a1c67f5..b784564a14 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 099fdaa24e..02ce36bb2f 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 5b3b8b9718..ec5663ba13 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 0a164cb193..229a581dc0 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 0b95f6c9ce..6c5b165a48 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 253f9a9271..af0516eb69 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 61a30127c2..b0f59bbfff 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 c8a7a80c58..38e709f8ac 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 a8ae3b4cd8..4b68e32801 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 b7f01641d3..f195f1b521 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 e5921ec110..448e86a021 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 2298302998..50e9b028c4 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 140464080e..0a8436622d 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 761755d926..22d9891c5d 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 f6338c6672..d18928467c 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 ba5196ae91..f394878725 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 89703f32a6..8be4fb22e1 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 17efba3c76..b982990c37 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 243c1731a2..bbc3d0443d 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 a89688d207..8d4a3ebccd 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 c629eb4755..552f178732 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 bb6f0e809a..ae1eda1204 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 76abec2307..6c5aeb9e53 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 6d16cd3139..46aabdf274 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 ab37724baa..5fd9b142df 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 bca428882b..9782657198 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 5027d53c97..dec098d498 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 a13066c0b0..5c9da3b4d4 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 f2796c7ac3..451ebd16bb 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 891c9f0532..e19435a481 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 5f0c9e91d8..b9e5468947 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 240a280e9a..4bbaf0501b 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 19c78efc64..fdfcd5c7af 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 6185e70ae4..f7635ef499 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 9306e21eb6..1113302e74 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 5a499851f0..b52e2046a2 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 873f77b43e..8fc20082d7 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 fb68cc272e..b1c1404035 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 c668d1bb9e..9d24111ec6 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 be0d91b8e8..02e615492b 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 c38706c94b..ee08a42826 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 e3bedc58eb..9cac2b8913 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 24570412a9..c949fb52bb 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 472122b145..7ccb496c6f 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 94ce1e2077..a742820ac2 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 5a959b85df..1f942ca824 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 e2ec46965a..5dadda44e1 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 d3fe558d8e..63b44f9bcc 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 2b623a9f26..38074afab8 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 94d073acc0..6c1ce68ccb 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 dfe904ce05..31527d88bd 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 3d55da0982..e2b2d27a67 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 7b055f3e9a..faf78f020a 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 0d06a773c0..6d774d58c5 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 241da7cf3f..bc041dafac 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 3e71d39840..827ebeca5a 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 3fc97db432..4a69e37c62 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 feaa8f7df0..dff3cfdc31 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 822711f8c5..7dd36785ee 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 ebc50cf6fc..5307b1c46d 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 7ead11aa45..905133cfd7 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 ac1849b504..ed89b8e214 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 e3e90c1483..978ba96ae2 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 84620fdb3d..effc65cc8b 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 1ffd4c16ed..3a47e40c8a 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 d9828f5d60..be8af69770 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 d7b5d5b07b..5b6b8f861c 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 be408d72c0..7672db415e 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 b3725f9dac..a9e862f50d 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 8e2ef62484..86578c0fb8 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 11f0089d9c..9fa0ead31f 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 3eb1559642..600acb5afd 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 32150b641b..7a9d5ecf17 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 3dfe1d382d..b96145e391 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 eabe2031c5..33d94cf1f6 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 a5dd10d07b..3b7221efb8 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 7262299d3b..923404eeba 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 5056cd7d70..f6880ecd2d 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 6b7713a363..c91363c0bc 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 ac443002e2..8d215eadd9 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 6efb26e6bb..1cebb2d38e 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 3169921c98..aaa17adc42 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 324608705d..19872c961d 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 e01b6a5e88..1caf4e3661 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 9fd868fc16..e640b0b27b 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 299d6d9e6e..2f55ac1acd 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 1c12aea18f..29fae104db 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 824c0c0c71..c09119b6a9 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 93c8270714..708bc821aa 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 481514101d..db1d6d041e 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 99b8ce4a9a..1943e8f4fb 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 a36843510c..9d1edd6439 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 0481dba048..51a02c879e 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 175b7c43b5..376d990c31 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 f2ccb3fdb8..ae11aaa666 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 12745a1a30..0663686ef1 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 0aba793184..be09c211bb 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 6ce23f86ed..733f8889b3 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 13df562849..6d28fd974e 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 9ec080dd97..06f72c750b 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 af709b54cc..e877d02c20 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 2dc55b3306..bea5d02823 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 47d65ff2cd..1e0137594e 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 6be8f18169..fc7e824697 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 360967d200..2a567b4a8d 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 40c5434ff8..f2643389a2 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 fc67aedc5c..babb757ecf 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 fc5f53ba0b..5288687c80 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 1f6ed25293..0b166cd06b 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 924e063b47..d4495cbadd 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 8b605b4155..736a47e879 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 ae1de6e449..d4a49b1583 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 ca55eca27a..3a781b0ff4 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 3072d3483f..62bbe4dd77 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 15e6faf3db..12be83f5ba 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 f13e03e288..c131a56577 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 523089e0ef..adbd0aef43 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 956e6b80f2..c08e28a1bd 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 eb7bb769bf..9b365951e9 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 582068d0e5..de4a74b2bf 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 f169110eb5..e864c89644 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 931c5adfa2..a93134c948 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 198158de48..abecf25de4 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 073d2255fb..02f4eae690 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 0286146d62..597e526bef 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 bf3ebe9408..fcc94a8c35 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 12eb5d6df4..acd92fbac8 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 874d4f19bf..7c7651fab2 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 1ec63aeb1e..dab6f0db83 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 3b215c9af6..c9baf97b5a 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 8ff567f2b7..29b3efe09c 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 c93b65ab2d..fba9543e2f 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 6d4338ff62..b52000cd6e 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 ebc1647e9c..4e0ac17c8d 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 3319f0618f..6f565e0120 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 aec7543b96..8cf99a2292 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 8030924af8..1c78673433 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 5d90e5ec5a..826afcc8d4 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 65ca6aa1ca..3ed98c0e37 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 fa0a7c184b..2b78e6f9d9 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 0e5c8e9863..763d9bae11 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 2c512b9220..3298fe3d51 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 d8c4eb7eeb..a27a64d932 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 2a61087d4d..05e9575648 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 c5e0b7c594..6263ecf9a3 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 ff1a3556ea..022bd861ff 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 b6d78508f1..2c5aa3574a 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 8bf02084bd..a8ea41bfaa 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 5a9463c877..39d489a3a8 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 54c4a68299..7ca15f182a 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 70fad50df0..1046b8da72 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 bf2f4f90ed..25c78ff294 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 f141e49461..25bb946cad 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 083a31fd0b..5c13a24b98 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 e3cdd6b2a3..03a8fbb325 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 157ad16412..95c54f34a6 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 9d102ecb04..2c91182360 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 f1bd9355bb..54c84b7b4d 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 0ac09c2579..ce391bfd8a 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 58ad958ef6..23c205fc1c 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 e46ad7fafe..06b0489d3f 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 0046f4d254..bb8be9bc6e 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 2d8c70644e..437f4b2a0f 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 4344d38517..9bd481a89b 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 b78c73381b..be800dc86f 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 19435f2e92..d9f581c506 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 d37b829adf..6d74b1a44f 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 9f35adddf7..4c6b079b1f 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 be9df683d7..72af4d3590 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 a840dc2c07..d256e1b50c 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 f308c06347..a3245bdf87 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 96b5b32a55..4e03441356 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 963ccf8ea8..cb082ae3fc 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 c2e6701b91..d643b94c4d 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 f12a3cb220..009305e414 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 e534cfc9d5..2ba09270d5 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 260e8d90b0..cf2ad67b1b 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 839a09b67d..359f84b01b 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 58b650801b..98ff9402bb 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 112b4c241e..6d13f21dd1 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 94370bcb1b..ef96c5bad2 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 dd2b0523ff..517588f9e0 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 596f8ca4e6..70657175c4 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 77e2243ee1..6fcb5c682b 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 2b87702452..aca8d4301e 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 4a912fd0d5..8070e14799 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 52c7884cda..a664d25f0e 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 affcbe434a..7825b80d51 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 3a9e9e836c..2a57a67eb2 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 d45ff4061b..72d7fe9edf 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 63ddaaa755..117889cbcb 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 e9081b6a73..9a7e10b888 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 2769d48ba5..22934a3f07 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 fa0037e821..04052393c7 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 e3b5a8ed19..a8f528be90 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 96cb076f60..06e4e22129 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 93100f1e54..ab31fc0919 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 2d7e0e889b..1fadbfe360 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 574febfe2c..4ea1d61b43 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 de9c990f5a..3f75e90ca7 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 54dea09ad0..5688ce1e33 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 f5faa5562e..ca80d831f2 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 43c71afbfe..c80933d6e1 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 9c8e3a6be3..6ee234cb3b 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 207657cd85..0bb4e27b68 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 fc3d885e39..f4f2418b6f 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 72fe522e00..8109aed79a 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 45142a986c..577a636869 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 5b02b5f0ec..f396fa9aa3 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 2a90f9f417..35cb7dcffe 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 f355bf6b67..3e7959aa94 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 4cae72657d..c36648c428 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 7917642eec..f18cfb6460 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 27e554eec2..0a72c5602d 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 e0b16e4728..926a596b51 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 bd0eaef644..416db888be 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 bc60bfd48e..dabf5163c5 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 a0c58eba0e..0830f14f81 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 816dee37c1..5542537d12 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 fc2fe44342..6d9dc392c9 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 e6b6197735..ee99aa6c9f 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 5f041a8bd7..cd3106a261 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 0e49c4f513..408fa4842e 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 7eaacab4f8..03502c07c8 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 b54f55c08d..dcaca3c48e 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 4e6cb07931..33287603e7 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 d5362a0c09..082db85017 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 0167f7a50f..8ac1562a90 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 bacb2d1042..3eaafe2129 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 74062dfdf2..294de5bcd9 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 e309e33ad7..29ea4e581a 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 5c60d7adbd..ac3d9d9c4d 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 07cbfbef02..7070b190ee 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 6304f6f01d..5148c51593 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 87bf179564..c2a3611a0c 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 cf22a4ace5..beaff879b0 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 53e79bb7c5..40188ecb15 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 42391f1d2c..32398b09ab 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 c1f9eb7b5c..ded884951d 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 172a786459..77d4a7d4eb 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 bff7fa235e..9090c7a3c0 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 9d715b3004..3233ecdead 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 556a32745e..55aeb7f612 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 f473612fb1..0bf082d785 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 e3d20989d4..ce0d050da3 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 c9d8391ec1..504ac0f44f 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 a47528fed4..0c04242a70 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 e9b4cf909c..50502a2df8 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 6e1d37286d..4f6274b727 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 092689e694..254a18b833 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 4464dd981c..d5d7a42b9f 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 bb8e648ab3..75971ebcf8 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 59b1337b13..355a4d5c30 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 c33d0fed38..805ccb853d 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 3046c1dc2a..59eacff518 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 0dc7d785a3..010281354d 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 fb0dfbf353..06f16354a8 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 3c0271eb5f..ea0f6873be 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 3d477637c9..985e0f07c6 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 485058dc62..74a5d9621e 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 6f80447bd6..20bba081df 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 d402a43493..70507f7679 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 a5de77c327..2edf1d0684 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 91d64337e1..d8056a290b 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 df72f82ed0..7201bd8bcb 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 c5ae286a61..29734cd19e 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 f9c2f51f63..cbfbb3bbf3 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 31b47e0fdc..91983be964 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 fc1eb7ef2e..2e6339e7af 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 2ef81f3666..039210f143 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 d82a90ebe5..00c71c120b 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 b2f84eacf8..cf5bbed2ec 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 1f6ec88c08..3a19d9e1a0 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 186c53e59e..24098b6632 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 a9399eab9e..18f61a74a3 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 8cff7bae86..e3eb5a3fc4 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 9d809f4e50..264c6d6bf1 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 a1df68bf19..d34084df59 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 3dd5be5438..b307e4dc9b 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 2564e89496..1c8b77b65c 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 1f412acc43..7ce9f9c686 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 4be4d401ee..aa63821d89 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 ea342df973..9d190167c5 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 a2598be097..5dbb387f2c 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 88457a5c1a..25822b192f 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 59a0f2347a..e4a7ca4b71 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 563bcf526c..e0d3ad5d7f 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 c408004d8a..53df25e377 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 149a661b06..0de9702fd2 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 8adb622a22..52309a4d91 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 5b90103e9a..066d04c963 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 c3c506196e..042da6283d 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 a62920fabf..0bfd05a05a 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 65f6e0f658..b2e4e9e6c6 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 d9e613234c..0ba3ffbc0f 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 84dc8ab67b..ba86b4a4af 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 2b31fb5dd0..f3867f7bc6 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 acb45773c0..bdaf25b825 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 e2083d7676..26b001c723 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 63aa3045f7..bd37d3107b 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 1a86273624..ef7ee92889 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 0e53ee2098..6ba12de4da 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 d0216b1a19..9aa835e0e2 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 d9d1d0f8f8..d9427920e0 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 93c1234917..48c3577d90 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 6e15975080..7daaf69d36 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 d72c2bae90..565925d6dc 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 8e8d8fa290..6c8b1ab534 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 f9a01d41b5..4b839ef561 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 5b3a35cda2..b3b484e755 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 42228682c1..4fa5f8fd85 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 4aafef85fe..84a291ce63 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 e4c75504e2..b111ac06f6 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 c50963a9d0..1b8b733cab 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 decf39e127..5fbbcf7e75 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 0c68b722c3..0e9f560f95 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 0961f0b7ac..0df63408fb 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 fde8087818..cf27bfd9f9 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 c699dcd1da..11177a0e3e 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 cdb1d645e6..6afb43b704 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 ca6faf0ac4..9cf9317e0d 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 deb3802b5c..37b71c4992 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 8e45e36e2a..2076ef4981 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 988b7f5562..32825a02ec 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 41501a4a1f..9c64139e3e 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 99d1537dba..59fec7c5a9 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 7e19f11a1a..5bf16cb82f 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 76caeeab8e..1d336aac25 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 e0547b5c16..c053520b32 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 64d8a6cdca..cfdf54c7c0 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 2f7504d867..3d7c4551e6 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 d66446c570..85e239e819 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 a0b4823fe5..b72f9f4601 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 90ffe3043f..1089da0a8a 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 ab9841f74f..9e2e1e6b0b 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 0def3e70bc..0cddaf76c4 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 bc67b1ba55..4a8d7ec961 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 3029a3147f..29c5ec3be1 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 3faefa4b6f..ea01047b5c 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 3c6c1f11b1..0021ec5d69 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 a27f8b617e..77beebfb72 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 de8d8fb71e..71198979b6 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 e4a6ca293e..0750ad76dc 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 b9445e6e60..79d5af95a3 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 352a346fc3..511454e753 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 5cd759b43f..6aecab0b2f 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 db89ca7a0f..8a38632995 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 a57fb56167..3d0be730f0 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 f92a64497d..4ad89e74d7 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 9dbce7e39f..b39d24b0f1 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 c04780fa1a..ce3f4aae50 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 7df2aef7da..15830db562 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 6902a92530..aa5e36fec3 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 75f046a772..ab08cd5ca5 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 6a43be889f..c33014c1a9 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 16c4d9102a..296ad61bbc 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 a3dc6bcf4a..8b153ed102 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 195f1e3566..a92b99ff0e 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 cde1c2b238..438c8f8b73 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 ad51470e66..a06b5882f1 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 acecd0f6ca..104cd5356d 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 43b3343902..6e25ee203d 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 ca488938fa..213512159c 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 0a24b3f9dc..38289801e0 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 ade19ae249..f63db0fbb2 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 94b2842d05..ea7886ff1c 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 b59db7a755..bf4d1e49ae 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 e130a75489..476c0516a0 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 e13cbac408..4a20ea7095 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 fe2b12f3b0..bfb293a520 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 2958581542..96b1ab0614 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 bb6fd7b36b..05092e3779 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 a56c346890..ffc82228ce 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 5661533793..fb806fbb14 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 53c37c0140..a397dce853 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 640482eb32..4a39faed55 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 75faa2cf01..015c9d76c3 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 7662a7e5d9..0f7cc379fc 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 29907a3775..bf0cdb401d 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 f8b15bf92c..f9aedb2aa8 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 8ade9a582d..3ae34269c8 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 5f704e657e..505a5aefbd 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 2da76e4282..f0ceb27415 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 9c983d3082..1504e00e9a 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 9a5af86481..3e33f80aca 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 6a45877491..e7e4524591 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 cc4bf3672a..8da09876c7 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 b168f31ddd..5c6d2c3841 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 5ec3805e0c..c1458a8f9e 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 31ad4833c4..2908e097c0 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 1a5a66f207..aa49028673 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 5dd06d801e..a00d8e87d6 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 ee20a282eb..f33b91f7de 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 302e6dcadc..07d8ded9e7 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 b360f83be4..a82ae0b29e 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 1dc981ad50..0cb2e6b37a 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 8a3039c434..3b3d2d9459 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 581b8de6cf..e07c34a1b1 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 aab63ff480..310d82d255 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 27aa353ab6..0883438940 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 154b9c0b99..c98a27cf4f 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 e9015b262d..cb41c0db01 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 a20a4dc9ec..6011bc5375 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 d63d7fe519..7f66f6d845 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 7c58dbd560..7b3237a136 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 8a54d382d5..27965a99dd 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 be2b4194a2..a928509ed0 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 ef5f970270..50b33349da 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 5376e44292..e797e3ae08 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 837835862f..a8601eba14 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 8360d7682b..7d8b36f692 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 1d1080ad0d..2d6bb4dc64 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 683868a57e..c98fb18bd7 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 1d3e19b2a2..e1bd81b6e5 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 961c22fc3a..f073864e2e 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 5adf3cfdb8..9909163253 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 d7ad727fd3..670f2120aa 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 37fcee4c10..abaa4548cc 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 2796e8eea5..53fe46a6ad 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 02bffb00d4..3c5e168393 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 a27901ebcd..c89a92fcee 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 e0e980d2e8..a14c85e701 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 264ffb1b28..8f164d29bb 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 25ebe737c4..b90d71a68f 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 bd119ed4de..ce623c3a20 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 8a6ea0bfcc..25b7d3e114 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 c723d6d206..83ea29df17 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 93f918fec6..99899a5bda 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 4be9553975..a2f4a574a8 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 6d325c22b3..5567817101 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 a7b1c36b48..906dd3ad34 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 b8c8363a79..0e4438fc2a 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 5d9ebf76a5..877c86e7f5 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 8c7c508bf0..eb0d0e919d 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 5a1866bac4..7a9c4967f0 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 f02ed3e595..754f494ec6 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 101d7907de..568e4ecf41 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 20fef77879..4947b8e4d4 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 f623b3bea1..9c7bbae9a2 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 fe13ea23ca..edc2a8fbfe 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 1e2f0563b4..0e16d54afb 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 e5e140def5..3d1339ddf6 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 064278ad97..9e04c826b0 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 3f4225a358..292b6162b4 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 19b02d467b..471890dd14 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 d671515258..20e32b92ae 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 a868de99cd..c622b20aa1 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 2b7ab40451..1738032d32 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 e671552c86..be93766aa2 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 c478a7329c..71cc52ae82 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 c5e92bee8f..1f98a7f875 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 5ec7220e7b..0aea2549a2 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 878d0f801d..62594abcb4 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 92e5b2d035..2252f25af5 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 7c7d3106e3..ad7803ef73 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 2113794d72..1b5d3f937e 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 86775394a4..b00c5bafe6 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 8cde0d8cc0..d7dac5660b 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 eb0ca5a43b..5f5bf85900 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 857691370e..da3689d180 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 cf7da57d39..253bc8f6bc 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 bd1f38c7c2..0045e067e1 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 82c66066c4..78c6c66d8c 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 b4701a2443..4da1050403 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 664304d97a..8da964be33 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 f0ae3fcca5..f9ca5225a0 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 703a76c522..540069405e 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 654e15858e..32b279ad6c 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 e1d8a91406..8b527b4d21 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 56537d8e3d..7cc39a95e3 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 90b5486295..f8106ce591 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 e51dd5734d..53e714fa70 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 2698852c75..cc4170dde2 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 c02b6c91bf..e7d8f33133 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 25a86cce52..8d99206306 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 71176941aa..249bfc0343 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 705e773895..cdfd1813e9 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 dec0a7dd88..4336117448 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 3be746173d..b8cfb33e46 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 8338fc82fe..0f3bb1b8f1 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 514678f3e2..b2fbf5f1d9 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 84804834d7..bcf19a7ec9 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 96a24c9d59..2ffa53573a 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 958465626d..24bff39fda 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 d7cf80c5eb..d9e93fec09 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 3e40a3d2d6..0bd1d494b1 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 3cd8b58ac3..4c9957d0f1 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 bfad96161f..1f756a2ae6 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 d02a091e71..9ff7568812 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 6116ec5e0e..fa3542a973 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 cc17d69b72..cfb229eb92 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 ba45e49d67..d8a616de44 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 8cc00b2101..eae4180291 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 21611bdf26..ac205352ca 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 5e45cfa0a7..ab7a238df4 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 5bab0d2dd9..430595f0c5 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 2b0b82dc1a..65fefe03b7 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 d0d3c32233..3cfa391527 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 a4d5b8ef61..ab2fc9ccc3 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 ee4e1418bd..881ffdb882 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 33dfc98863..47f3385836 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 f46b38ad6a..7ede02ba7d 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 324f67183e..75cf214b59 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 d2c7ad9a25..183fe4a977 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 9cc06f0cf3..a34fb241db 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 158c8902d3..44aee6288e 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 8bcf069492..73593ac838 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 3bd126cd7d..7fbebb83a6 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 b5da87658f..b8de23497f 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 7e635e5f19..68732a1a1f 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 0d2f9c5fd2..afbd4b909d 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 fe9c696996..4b6d91c6f9 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 ff6c3d636c..93f14adba3 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 9db86c5e20..27ae2e8323 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 7c0e89f110..8d2cb2331d 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 c6f75f2e4c..242331bc57 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 5485ec939b..a2108e2374 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 c3623b00b6..1fa7503397 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 6f82dafdad..510c6f1a59 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 28a6428d14..d0bc0435a3 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 7103a83a39..73a1e2cf7e 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 e3091fc541..9d2a4b629d 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 91459ee7ba..87d449698b 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 a27b6039c0..048b09dc57 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 863da237d5..a1296bfc94 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 89495c06fa..058a22338f 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 e2c2cf9975..4b1780a429 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 4c43006fb8..da35c8fca5 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 407d9766b1..34634be6d3 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 b08bcaa244..9501a24501 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 d86e60c936..d8f2ab05e3 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 9100ab91cf..737df0b446 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 41e8dc76ab..c6fe7af6f1 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 5e08759786..a5842743fc 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 8005c4afa0..8123b2760b 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 815606d145..49d572189a 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 b9b535ccef..11534931b0 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 bc5a69c5be..5a12695891 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 6b34e6ef62..d5bfa98cef 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 f7c4ff387b..83227fe57d 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 602f5107c4..f7939d5428 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 fcf73ceaa0..7785a868c5 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 a29795a975..99a4843354 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 1604e67fe1..67698b235e 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 7228145f93..36341c075b 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 88fd3327b6..0f8345689f 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 08e442f766..6478129b2e 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 7e2302a006..675c46c5a7 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 cbc962fa2b..341e97a3cf 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 2b1c87aedd..ba5a9136b5 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 970c828f3d..4aa3145ae9 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 3aa1b687e6..8e6cce0d16 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 a4ccc6dbd8..241f9a2313 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 071d4897e8..63fbb4b114 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 7813606a22..c340d01c8f 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 d016fd5c93..054c386825 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 f66d2d1ccb..5d67784b24 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 0ec22b5b9a..c4bb708aca 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 fd6cd9c326..90578c8e92 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 fdc96f4cb8..63cc65128a 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 1a19de48c2..f3a8fc242c 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 0e81909664..ac0d53a5b0 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 74c66f5fc2..5336ea8af9 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 29763aa990..1508ec2023 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 cd6cffa0c8..bc29e0de9c 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 21866cbf4b..9cce187453 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 767eaefcca..61df0fb272 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 2c03848b07..cd67019e55 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 70a7c72f6e..adf6683a28 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 a9d2f5b1c2..9b7efacf1e 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 aa47bb6b2a..ef870c0a38 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 9c29043fe6..3205ef63e4 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 5bd89b5061..70bfba6ee3 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 18e7051940..eabea009d0 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 6191902d82..97f29a783c 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 cb9aee8777..eb285919c9 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 0503088f32..f0aa6bbaae 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 6331576d22..bb623f024c 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 f10036bd73..ab9de91b6e 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 75f839cb59..e4016b78ad 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 ece55be71b..94016780bb 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 b831741d18..1efc4a8c82 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 2ae793a2ef..f4fe1d71fa 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 b15ed1e714..0c69034265 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 301a173fcf..78aea203df 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 2b71c01ca6..e7612e28fe 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 f90a7bc144..a3bcdfb0c4 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 a381c1eb03..14f522cfcc 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 8e400cefbb..4106b6cd56 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 441e655ffb..5588d5d439 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 61b9d280c0..2a289dc723 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 0dd87eb3a9..9333dbd453 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 48050e8e98..de7f54e68e 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 d1e2478604..67e9d0b8dd 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 a5729ac809..7374633534 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 6ccb267561..e9381076aa 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 d3286b7497..0c71577a53 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 f9b1ecfc92..f90082315e 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 d918687617..6e44eb276e 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 8282216e2b..227657efd7 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 5d2bd7fe47..c395bb0fbb 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 5003ab6cad..f91e0c684a 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 9c8addb27a..616e088f5c 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 788a2d860f..03d9da44f8 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 f8285b857a..f24985f818 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 063140fa31..4ad26584ab 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 c771d0bb17..59355966fb 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 424c2021fe..7c4c5ad71e 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 9659496cd1..3713b8ca76 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 104e62344b..5643ff467d 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 c6cd3ea490..985f66bf61 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 9bbdd38732..fbe5320c94 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 a9472c4f19..7c76d05db2 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 eef4677189..afd43d7922 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 2f2c583fc0..e99ee07507 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 758d29c6cb..ad4e09f10c 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 cdb56107d4..67051fd0c2 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 e69e3d2774..a441d9443c 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 ea403cdee7..982bd18519 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 406026a34e..1e69f351ee 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 9aecf747a5..e1d8689002 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 2acd20821f..ae62d51b64 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 7a22ae97a8..03f821a6d3 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 bf110abb67..424ea6b503 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 c7bdd42b13..b0cfd4caf4 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 13ade5a8c8..1ff02838c2 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 cfcd8c5864..d82335cec0 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 9e59f1dda7..7080494d60 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 db3dfae407..2ef98fb8ad 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 aa6182ae01..e6e0034bc5 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 a0ca3570ac..9870420966 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 c36cbf4daf..301d02e9a4 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 54ce7fea39..31410e1c07 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 3a7459054c..9c0ee394d9 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 31116642cf..b1e48a3d94 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 2a9084defb..0551370642 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 261cf7dc0c..609a7f04fa 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 bff5cce20e..45d40f7a4e 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 81a5baea22..17ec6fd7e5 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 d11f9426e4..f548580a97 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 52eb60f4a2..898f9a9613 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 66bc7bb16c..86e585415e 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 c1584cfa21..5eb57c8508 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 e43f6485ac..6d16301c2c 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 f56e863822..2fd2119cdf 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 3f117a09af..a8bb5f74be 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 ff4e7cb8e1..dd34333910 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 85b5d8f00f..50958953b8 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 ce624183ec..8c40572266 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 09ae27bec8..725f98b877 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 baddcf3410..d8a5816ea5 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 412c118c3e..7b52596904 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 fee45e4ed9..974be2dea3 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 dfe74ac69c..ed720c49d3 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 7773eb370b..0082984bdf 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 3a529e78fc..ed77b1f7a6 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 4867da0a4d..2742f21502 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 1c3cc172c7..1e517407fe 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 59e5871201..b5af911373 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 f3b32ee773..12f856d185 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 7219a8d623..910175172b 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 0a1dafd5ba..a4b0b630a1 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 d835d048f0..c82e2b5246 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 8269c06afa..5506fd796b 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 5cad4285c9..2ab2414dfd 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 79ddf5c584..3e5b8845f3 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 98f0bbf0aa..bd2606bca5 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 e61f14a8ed..c6a31b4f2c 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 8a20ed5c2f..269267bad9 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 b4c3022a62..fa9dd51cde 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 576c0841e6..9729a0fc40 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 278567fd84..297f9b8cde 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 e30780bcf5..587015dfb9 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 c43b12a6b2..c96f073b29 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 b2f369ae97..edb557fc4f 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 05716c7478..dd50c145c3 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 1837cffda4..2bfba22058 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 22f9856cfd..f5fa33f9b8 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 64321d7c19..b2f03b810e 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 fbae7e5a60..59be46fbbf 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 4c23464bf8..d969cc5f36 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 96bf394984..0501346118 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 08a54444ac..3beac93d17 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 356200d3d4..96ac9332e2 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 81f0cc363f..58c7c22225 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 07140dff06..c9d31b4dfb 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 cc82cf4393..236e456405 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 0103de190b..efe2e06352 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 08676def84..77dc555080 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 4cec2d5df2..2c79aaa3ca 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 3bb1d18f20..7c07049e45 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 c99b528c6c..09e1d71b1d 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 2297d8906f..8210bcf612 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 8958d76f9f..c271e2380a 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 bcc70902f3..2b560b94dd 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 42d4e04c2a..345d08094b 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 5c2710f0c6..724828b64f 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 751301e363..b19ef3fe96 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 a03fbd3d01..746a3f9454 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 f1f44ed044..513a921032 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 fe70ba8c25..c028822a53 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 0b94ef3756..c8434d1a98 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 e12b4e8a94..628da9e9c9 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 5e03373a94..fd8422168d 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 191c04639a..be36cd7e05 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 699d8d57b6..b9fbcb61d6 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 558a58eee9..39c1ad57e6 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 b206e8dad3..adbabd2e57 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 93b567524d..c0fca3924b 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 7e54f99752..1195bbcea3 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 3cce3cfc97..2f58be1bcc 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 f43373b563..1781ebc642 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 e01fb23ae6..d71b6316b2 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 0cd20eda8e..3fa8c52d37 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 982ee5c568..53c1277f96 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 6d313e398b..b5e3930b63 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 a2ec24bfe8..fd7e2557c2 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 a402da2ccf..57ccf96188 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 c186e98263..ee7da10f15 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 52f4f86f3b..894bbae254 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 519cdd0db6..0495c8116f 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 7d7e9ea987..4886e2724e 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 e030605c7a..93340d7c62 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 b44b952d81..7258e4ba08 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 c096429d0b..18b5801498 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 9b823f8fae..85f19fa0a8 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 b45f9f2bbd..d38229ac53 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 a5dfdd1a8b..834a260ff7 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 2ded4e98de..2832dff978 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 ca402b4830..7f62eb9423 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 319b2121e4..1fb7014a28 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 e0eebf72ca..58a40a1e9d 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 d14196fe7e..d10bb19981 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 0d0b25ff49..b0a87a53bc 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 ce14e7b9db..500360848d 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 dd81069fbc..ae7cc10164 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 75274cf50d..fe69b4a012 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 57469fcad4..51d65b7b5e 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 413a9f6aa2..e6e2087155 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 0d472725e8..36388ba7bc 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 eb8780f518..0ce5f176ba 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 c8ebe12201..f6b484e4cf 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 86fe9c3443..027dfad4be 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 1fde0ff1bf..953d7eb89e 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 572161bfab..c2a4c83344 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 8cfc861832..51e2013fa0 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 55f2c504b2..85175cded6 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 4e23a5891e..dcd983b84f 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 cf516882be..458f690657 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 8bdb9decb8..4e76386ecf 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 e73b42ed37..998aad8a82 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 1ac838e185..b2fc1d7807 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 201ac4e236..e50c06ccfd 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 8375438010..9d90d11b85 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 44c163816a..9b76a3f19c 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 9bf692fbd5..46c0be63f3 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 03c789d643..448c5d2f46 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 9d32dffa21..b8274e277d 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 33c6c16fb3..6f02362d0c 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 adba496ba8..7acee30d4b 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 d4a38ab833..2e2cba771f 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 b1e82ecf18..4063eaaeb5 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 9ba8e0b43b..11ac1d8c08 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 9fe7da30db..6682c831e4 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 9d32696182..0bf0c682dd 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 4564abe728..d365b07ad0 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 c1b0c9d555..b30cf6756a 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 b1e3c1f385..68decb188e 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 35674571f2..125600c2f6 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 99fbe4130f..8318593c5b 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 40bdfa739e..c5b8844a42 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 f3500fdeac..9a6b40560d 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 1733c3e2ac..654258c654 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 7d2aaa4480..98f181c04e 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 3a4d51eca9..b1d98fc110 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 da3caf8802..83e1420a67 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 03395ca6dd..0c0a6d4f95 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 5f5a0b8dc4..0c800bd293 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 acd53f170f..dea7990255 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 4233dd3077..4281f527ea 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 b8e7c47831..d992ff28bb 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 46bcaf17ca..7dbdc90261 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 d616f47c23..5a3d7d334a 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 126283084d..a0e87c19ee 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 dbd2b9a217..db9955167e 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 2f1d59dada..b30e9821c3 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 43216578ab..e39c2af6a2 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 c23bb53844..29400dcb79 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 9a7b576d56..849ae9d6b6 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 dc98df4788..a5d9dbc2b5 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 de8ebc930d..66b0fd99cb 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 a7bb64b465..222d0fe944 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 b28d14efae..34909b1f58 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 1acd127649..1605bfce1f 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 ae730fb12c..3e01f831e0 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 06e86bc750..085fee9bfc 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 8490f16883..4b00b54d81 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 3fbebb9a13..da4babbe58 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 2dbbe848ae..8f5649fbfc 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 55c9f4e4ea..839a8f1401 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 3e27d3e476..261de4eb9e 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 434cfcd131..840256d08b 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 74dd8db258..31a9b88cf0 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 5ff2dc8f11..70df14b3bb 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 8f1d0c9f6a..76abe8aba3 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 8eaa2ecd85..9f330e9d3d 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 ebf499e2f7..438482f78a 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 d99b839073..8f6a707417 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 0f5860a39d..781d1e570c 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 f03418e216..d5f2c3a31b 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 b3dc8baa26..a4a0c923c4 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 8a23fe7914..6b641eb9b3 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 0499bf0c9e..573e4f29c3 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 62c747eb92..56f8e4f695 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 8b2df0d721..cd41d85db1 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 4cd8631cd2..ebf6fcb3be 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 bf99ac7c47..2925020157 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 848e66ee02..b560742a68 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 1916c9ac17..1ef4d3528b 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 d7c777af02..7ee6e652ab 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 101ff9e007..5721f0b0b4 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 6f78c73399..090c560d31 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 723ac69471..fc5d644324 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 c4e11ff891..ea05b5b900 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 36bd761ab8..9fde6edf44 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 08a3c37004..a1c93e6754 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 d41ca542d0..fe6c20d8e5 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 4be6321cba..d7624ed0e5 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 bee1f21378..a233ce3a63 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 7835fd625c..4e18f1d260 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 b7ba4da8f3..dfc4dd9349 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 4145977075..ceb84a7880 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 3193e10243..b39d5fd5ac 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 fc817e2cd1..89aa79ff0d 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 883c65b8d4..ca881647d8 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 732bf92ec4..18b2415980 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 91ddfd383c..1d16c29b51 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 9f91f99e12..eb1ed3e30c 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 e50f45184d..01bab13bef 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 e9907b23c0..74aba83e8e 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 518623017b..aed7e4cdb9 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 84a0731637..d851e41549 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 e3f8f22987..55c89d3371 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 b2c1b501b9..8d5772da8d 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 2df652068c..04c7f09ddf 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 2efa0d3e4c..547ffc698e 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 ea0e940b8d..0fb0971582 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 0db0ebeaa8..35a67da316 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 116ea8478d..ddcb2a8bf5 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 5d9732ac35..8c819a8b13 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 c4fd36af27..3c9bdaecc9 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 d48b5d27b7..aaa46941a3 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 82a54244e1..0a89c1da6d 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 92e7b5b604..8d53803167 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 258279758a..3c25c3f8bf 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 45bfc2c5e6..543c4070a5 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 5e4c0e0b46..046dd6dbdd 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 fb8baa9063..3093019122 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 af8110be59..d8974295b6 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 ea4df1b725..6702311644 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 9d80d1cc11..4dc7810d26 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 c1e07a329a..6a8a7af340 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 532e186333..fb7d545ea2 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 5db93510a0..9f5ba4c06b 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 150a1bea82..a33199c20d 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 fe0e664e3f..791a1a27f6 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 814063f5e2..21a085992c 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 0887c560f1..bc53cf66e1 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 00d6cd1693..f07aeb98c8 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 54d554ac76..db4e5cc5c0 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 81cec64298..e479e9ed94 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 658faa9cf4..b918f7b933 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 553d972085..fc513f13e5 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 8fab6ccbac..d57f666be8 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 ad5f652985..757d92a8b4 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 0e032ee752..a7457debe9 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 cf51d92ca2..4da8615e2a 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 e6790e060f..5b62669ee7 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 405fc23036..454fa05b38 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 c5df6e7f05..a6264b1d69 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 aa304f4ab9..6b98c3db80 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 8bffe73f09..023849c839 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 6ef5609bc5..21928a630b 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 c8b69d4dcf..a6ddf45315 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 67f3e2f0f0..70c947aa76 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 98b303f292..4a4caf7606 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 53c08799ec..5552481861 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 430218a19c..e7fa17bce5 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 470ff179a9..f81e63e12f 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 76b5817806..c1a8ac87a0 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 286fd26bab..0c78a8ce24 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 9c6d8c6f80..2d71a36335 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 925abc3a2b..f1f22298c6 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 0914d6000f..e455ee2c42 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 c6ae113edc..8976de7bf8 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 ef8eb77880..8d7b79d9e3 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 e2744c6e63..c0809a31dd 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 3a572b7e31..a2230a8308 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 c91e0c9c97..81d238135d 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 bb453c679f..3d5d25e870 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 840e3f7ef8..3c38bd53fa 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 cba080146f..fe3500925b 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 7b31a4a0d1..f8c5271d18 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 2ce7a9be83..4b5270c5af 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 7bdd9ac682..c0ee031522 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 743faf8bdd..f8285bae3e 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 90f6a90344..da4c714403 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 089587ef27..19ba66a9a6 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 1f6ccf6de3..f9edaada15 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 8bad4c1618..2ef7375d8d 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 ca0faf292d..db4b95e423 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 f05447db2d..bca4cbc701 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 1b3dd1faf9..25f4963a0d 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 9e1ae0cc4a..ef06bfa362 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 0fec62cfe5..f033524a6e 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 30ad23a76a..556e5210f5 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 9f1f886fec..e967a7d023 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 623fd7accb..b55e3cfc10 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 ad9bc5dc2c..50c026c94a 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 be484addf7..93ff7e4aab 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 af78737317..244d75457c 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 5aefed391e..92c6025bc4 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 7328484488..55e1db1add 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 00aa24c1b2..6e52c6a84e 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 57d2be7675..b1190e9e79 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 a85cea6ccb..6314f33463 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 0c7cb27104..1566b22e4f 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 55c2c1797f..697628e9dc 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 a51e696538..573fff53b4 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 fe962cdf89..68399b5faa 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 f13bb7c22c..9f4be00895 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 98e880b7e0..7d50bbccbc 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 bc5858a3da..e3f4dc2605 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 1e7d1ab404..6059763efb 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 ede49e7704..d5f6ab67b6 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 8a86e8cd6c..4365d6966f 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 515e73db2f..11e2e6c979 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 d930a36549..a02e204b38 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 ca03de4a84..6f199c9d0e 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 1bfb820b57..6304ccfd5a 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 75c56d00d0..be55623a5d 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 ea843e0c88..c9bd9f0d61 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 63546762ec..b2c8441a55 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 dd8f956d2b..45de4142f8 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 cd603bbf89..f56c6fa422 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 02e616c2f8..38f555aca6 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 d32735a2e1..3423dd190c 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 9a0c707b80..64bf747fb8 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 1b5f24109c..365dd5b37e 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 5a505fddce..21bfa6a6ed 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 cb5f5500d8..46aa2e7c3e 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 4d4404f043..dff740f109 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 37dbb1d8a0..0c46acdad0 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 6c7873ba3a..7e3508e7aa 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 a95ba0fbe0..157e84083b 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 373d326f7b..7f6f815881 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 287ecb6ee9..02557c6cc0 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 eb71358747..c9b3a1ab9c 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 af899674de..4c1febdd64 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 8575784f03..bee2daaf22 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 ae1af62dd2..ad5275e432 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 b9cd47993c..801c9a7db1 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 91c786eb12..21546425ab 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 644fb227f5..d3904a9a35 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 2e49353130..59f946cda6 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 c08dc4c815..52cc1b33e4 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 13915f2c76..6f5836d07f 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 0ab00bb809..2bc0567b1b 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 b775024c8b..f28c02e1a5 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 6f5c91d516..728e403043 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 31868b5bab..9db14d7c9c 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 c7121803a2..a82333a9b5 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 190388a843..55e7b69ec8 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 4b81058375..a42199821e 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 6fb84770c8..334065ac23 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 1a4dd8248b..70e114910c 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 365b32471c..f098d5a62f 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 4ed951b731..0d43fa495a 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 5535387e52..acfa8f4641 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 471be65542..279bbf4eb6 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 3711cd39ed..8c263c7f1b 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 7d26104b38..5d5d7060f2 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 ad90f3afcc..06766695a5 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 f8bd05fa4b..7dec6ed107 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 5af519f4ef..35175f1952 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 b9bf5da727..f9cee07ea0 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 c0badbf68c..8eb06950c8 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 2d5c16d336..8774ca2048 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 37edf3b5ca..5d795b7252 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 af507c4731..9fca1a6250 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 c51c41e1a2..c469c35260 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 18221dd49d..89bba1d470 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 cea2e0f7df..02141df397 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 9a220891ec..ebdcab4004 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 da01410c01..828f762951 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 f97df74c58..30424bbbbc 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 a53ea675be..fcf4a06063 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 05e4732450..f3489b9575 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 c5f3e824d7..c915c969f6 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 f6533f020f..3585572b0a 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 364eb910c0..35956f6d80 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 73e4525c39..1885ea61cd 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 c9feb0f17b..e65d57eef6 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 7f2ea26ba4..cbe372b035 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 99e1201fce..e83c0e18b3 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 9a7130fcee..7e12068ea4 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 448ad89668..bda1ed4969 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 94a37f0223..fe1109a427 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 a1d4af50f3..855deea59e 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 28afd2368c..4f866ca27f 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 9cefdf69b6..21c3412d0b 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 443df1a72f..ac08ff10be 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 c5742582a9..531cbe73b5 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 4f1d1d3c8e..e2f7c007af 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 017cc491da..444c785dcd 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 0ef10b4228..94a6039a8b 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 c563a7b084..4425f41ae2 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 037613b121..d46b89407c 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 64a8822c87..2f639e9053 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 455b5d2821..43db5a99d7 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 2efc21668b..39260488d8 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 f01f8917c9..f4771d7fac 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 ebea6a8ce7..27a263b33b 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 3de4e2693b..627d37606a 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 18eeaf3140..d0faeea75b 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 1afb69d316..ffd9b2097a 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 94a6bcfd72..766b5f7a61 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 44ea59c4db..c7262f9e6a 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 08396c6c7b..ca8c83d963 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 869340e6af..f82897f192 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 2f691c65fc..a915c1dc17 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 9795623dbf..a6a3144e4e 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 bbac3b93ae..932eeb697d 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 b261d102f6..9e43d53121 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 403628deec..935ce0a654 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 d44e5cc7f7..069916da41 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 873262d383..814eceda5e 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 875c35364e..f0020b34a4 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 e5050dd05a..4206d36f6b 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 367ee1e58f..710626a9ae 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 79f378b748..54f69a1498 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 01de8161e0..6987fa7c2e 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 4f41a9db53..40ba0ffa2b 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 732cccdcf8..6909ce5a4b 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 d355dff9d8..e69aa260d1 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 9ade481e3f..c1d2cefd57 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 37bb71f3ac..88bc18c02f 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 11b521a785..f1c318c107 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 f872074c28..b7c48e81a8 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 c4e0bb41a4..0d877fdc4e 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 c082aeadc1..48e31b792a 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 da0afb3837..fafcbc72c0 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 cb5fd7c51b..459049318e 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 ea6f823744..987123008e 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 9d4b256e45..fe272f6a7e 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 811f0c858d..e57ad2e36e 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 3f61e51772..948a421795 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 18fc3fc56c..bc4b8d4854 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 66f4ae9a19..1d771c537c 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 6d38cb806e..558c9c3837 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 958500818a..875e336d9b 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 d98f943f2a..d42c58075d 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 a2779a83af..635755731e 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 9d7b2a85f3..6638c44ccf 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 72cd079eee..77bb6ff19f 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 f82db771a1..b6698c54a1 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 76b0e71a15..ff29f5eb47 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 2b38b14655..56e867fdcf 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 10d2f274e0..fd3b0db0ec 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 5af5824eb7..9d4a2b8538 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 a28536fc71..430e8a2b2d 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 7eae4fbbc4..2ec87084e1 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 8d66ce4819..aa0f70e06f 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 c8e4a78a69..7688cf3038 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 06765b5557..3d213b3207 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 db95bd66d8..ceea948ba7 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 17ae75befb..8b4f5ccf14 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 e44f5f82c4..a59df02dac 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 4b6ebe62d3..3f80a8c9c7 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 a0baec5ecf..b5fb09db3c 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 5294413f92..0f5930cca4 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 81fb5550fa..e810f31298 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 b0544b0cf5..7686351003 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 827eda6651..6ce8e77679 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 d73e75efc5..320cd9d7d0 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 32ddfada4c..c78d3f9e80 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 e5ad4935bb..8552a3b70d 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 54c4904412..0c3f4c1f98 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 6d7c780bd2..65676cb157 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 d67aa5b2e9..6eb83da1cd 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 2eca062942..349d78d149 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 32a94bda59..df5a3ece5b 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 d1fcd71efa..418274c94b 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 7a92cf311d..a1418307ea 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 a5eef4343a..e8f2b946c5 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 430816b7d2..f4cbc4c78f 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 7a067e2c8b..732729d7b1 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 06f1039d7f..ef31239c4c 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 a7f43c66c7..3f8637688b 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 9464bb5aa7..8b88a1d889 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 49f925c079..cfe77b3c10 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 434b99693c..c8c5f8cc12 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 22f9d6e444..b2ef022476 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 652c8fb5ac..69b0b8349f 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 11b29aaa07..6b704c5d3e 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 276d278f18..dd467db324 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 e484615557..4f36a5f456 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 594624adaf..f1b227300a 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 333dffef1d..c8d49220ce 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 874a870be6..6db22e5a0e 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 1322806024..ca49943585 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 0722f4d637..f079af7c6d 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 b9893f3cfd..89e85283ba 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 0dea264eb0..d92a2e2a90 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 baccee3d46..026f87d31d 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 ffc0dddc1f..897d9f42b3 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 ded004379d..29875093ac 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 35531da6f4..00fd1da431 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 8c0a71ee5c..b7954f3abf 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 8f98d05c10..60085fe8f7 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 2082fb04f2..32d1203f49 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 3eb7446df1..b62682ea9f 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 9d52b86134..9d26e23a14 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 4d5e5319dc..e23aed6ecb 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 ee9d795713..9a211aff04 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 96c1cf6671..f533fa897b 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 80fcc3201a..3c7e7f8e6a 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 728a8d4489..0993d2991d 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 71ffefd377..7083280a24 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 4f415e4954..ad1901cef8 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 5328ff879c..2960a11390 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 44dfdd8bfb..6829005508 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 e2d99b722d..a5e8ff34bd 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 b3e38ecafd..99dc01df5c 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 4031d1780b..a5968fdc8d 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 eddfd157d4..ed64c929e2 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 336e8f8893..13a2ed38d6 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 778b285f5b..0d3430d6b2 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 fb2d679399..d882101f53 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 2108502b75..6c40a9fafe 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 686446f545..8dc7640d5e 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 7b18aa8931..57605e17d0 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 44f3440c55..80a9cfc670 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 333f45d031..9621d5e404 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 eda72be8d7..9d06c8a429 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 953ea80f71..22e10afdf2 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 32fac499da..bfb1cd66c0 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 9191fcbb47..c524e5ef72 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 346a82b831..1eec4d4674 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 6d8f22845f..dfffe050f1 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 01defe656a..d1974a033f 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 be951b7384..3ebc061c92 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 2b3bdef8ce..278833d482 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 d9ddd7cd87..c771c39b48 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 766c476ba3..020d4b3d31 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 f65ecbb318..8393c97205 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 670d958da5..3acfc79b48 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 2dbf7b7d0a..d69101e394 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 65ed1713cb..cf6f82cbdd 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 791f609a77..ab1f2c1a11 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 184c208c8b..030196430a 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 50841e72e3..aa97ae54ff 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 627c0d3523..e019100819 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 78e630d5a7..379e7c27b0 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 7a72b2b958..7e3d9cb5f3 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 8b3c090f5c..dc5b5bfd09 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 05c04160eb..bace927242 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 92d88b8d03..8cb0b0d44f 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 bd0b0deaa3..766b25bcc9 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 d85340234d..63c923b4cc 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 43804216ae..4ddb2e22f3 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 f1aa598ccf..e7b2cb4817 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 0aa1dfa06e..5b35479983 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 3fcec562d9..ca85974e9b 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 f1bd447af9..c6a3c8ed07 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 8a26343d58..2803907dcd 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 a00fcfc62a..25dbb6accd 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 1d637405f3..183c2410cc 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 d1d611fb10..c415f595f9 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 b730c35227..dace43c3f2 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 0bdc585c1d..fcc8043303 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 b5fc797a10..be95237350 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 bf8a562624..dd4545e679 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 b0fcff20d8..24ebd64549 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 a4a26ebbaf..1a670fc13d 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 a8376da546..5424e6e66b 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 3091f4b99b..f8c2e8fe54 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 23e8efb78e..053080c875 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 e963179b9b..42be4bd67e 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 44d3c86691..25dc1eb43c 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 9addf24b7c..68b5ac1804 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 8bcd5fb60c..9ae1efa8fb 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 513d69d5f3..d0db3a8469 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 eb45e524ba..dccf43fa85 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 1f2389cc25..6d4415c3fb 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 dc80df2b23..be9abeb1e7 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 a98d21462e..87078a6538 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 3f0851a2b8..efe0128fbb 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 b2de37c3ee..cc593a6c55 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 e414e60b5c..7ecde78c9d 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 b5452fed92..ac26a4eec6 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 01cf3fdbe0..5c88a55f20 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 cf7b955d4f..4baf8dd217 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 f76611d73a..fd808b3bfd 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 6291abcac1..24db938576 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 b23280c2dd..87d260f45c 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 84d23bd1f1..239384872f 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 e3f1d5dc08..a1f2aafb03 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 ed0eda7b9b..126dae6eff 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 5c9f9e8694..e199267c43 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 52c10ebffb..1f3259c0e4 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 74e2190411..143f2e64c9 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 9d2a106849..c2ef3eec93 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 9bac256a29..75ade087d9 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 db560710d4..aca655f729 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 9bb21ccb1b..60e5d73b63 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 27b59d68e9..5913f61e01 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 a40e767659..a02e03ebeb 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 41e7a09c1a..85849e57f0 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 9fa56b35a4..14bd56f543 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 6b94ab5aad..359bcc3a25 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 94cfc683b5..ce3a1d50f0 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 5a330cc00b..6667309a06 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 c43e7afe67..b8ee5e6852 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 3a654e0715..b1424b24e0 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 e2d4093952..8004de32b8 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 938a154719..d5ed456e4f 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 7166d176ff..f7deca5979 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 09c2f9254b..e4204a81ea 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 2cc0ceaa57..0b279620c0 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 b9e214aaa1..3db0d53d59 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 87652bb3e1..06588d946a 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 17491706bc..f799269d40 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 051f0f22c8..513cd5363d 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 8079e249b5..181f7b11e5 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 e25362693f..3e53bf453c 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 317f248d1a..08144aaf5f 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 34e3b14fea..50c7c38349 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 e6ab09b56d..5765365ebe 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 c7a7e7c59f..d83cd0fab3 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 b11c8f4f74..7ffc09a295 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 586ba7ce2b..1121797e75 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 bd1d4f4fd8..7584a75449 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 32b90690de..7053378dcd 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 e8e6f9f44f..f7387080c5 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 adcfda8ca7..d87f268cd2 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 a15f6c27f5..c3dacb21cb 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 b8d45f8584..4aa20afc3d 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 507ba3358d..45f12fdeac 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 255f046c9f..679c157b0d 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 a750c65797..92bdf762c9 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 acb64118af..0202bd4e7a 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 7ae6b019b9..14268ce5ad 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 4a441741c8..a12df4772c 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 1a69e5ffc5..f7441a7946 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 113c332769..fac46af7ed 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 e39a6ed39c..581061283a 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 dba45d0e6c..70b51f51cb 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 415a087dea..268a2c5ca9 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 65c69643f6..b205b542e9 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 3020c354a8..e08b774c4e 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 501a777145..f7cb4266cd 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 5cdfdcedd6..4b38618d03 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 9af31e9525..300c152e7d 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 dde33f020c..daf3099e9f 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 98f0fe3735..b6512aff4d 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 0668bb87e0..3df7b00154 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 e988f28824..46f6c46073 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 61bf46e92b..e09fdc920a 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 d40b109843..57157fa9e5 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 f333651bdc..c1e66d95be 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 c8cb24d455..7915181677 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 24a3994db8..cc408a066e 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 46640704cf..9e2a513901 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 af6aa16529..0b0c66733a 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 4a96bbe648..862277fdf6 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 81787f430c..8d2076a747 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 4503030630..24f926bb23 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 50fad3ce2c..cf544d9a3c 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 c589f6e39b..0f7ebe7a8c 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 78448064dd..664a20cc17 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 a8770bce70..f0505a1652 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 23502befc9..56070d6b48 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 74909d178a..f82b01551f 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 fb513d414d..91923858b3 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 9b11796327..3a4fd87efc 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 5f20595a6e..b98faacd53 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 dfc5c4233f..6a62636eb5 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 b6164256d6..708314e1f7 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 bfd8127b80..013543b7a6 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 7661885aab..5d4c022b81 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 c5742003e4..6469605533 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 930fc3e818..54cd340f26 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 9f63314007..c31131250c 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 d7343bf043..8d9be112f3 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 3424d747e6..732931d0f4 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 f1114be997..3fed8bb11f 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 ca0383b7db..7f05427f9a 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 439bcd167c..79445a2225 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 9153bce4ad..4d93aa7097 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 6ceaf4c700..1eca7c769d 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 ba255b42c7..d9303cbdef 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 7099be93d8..9e094b486e 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 a735ac14f6..e062ece95f 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 c8c5ab43de..f05f17d3db 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 c32ba43c80..a58f2cac2c 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 fc4312786e..2194622d49 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 190608b4c0..7b36d29e57 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 fd6acb1913..b79c9c0df5 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 4f54b77b4f..28d00dd846 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 94252b5600..a4764b378c 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 9e42895a7b..fbbf41b36b 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 33b4c58459..c3fbb9cd3b 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 c598612fc3..0f6dbab161 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 670372f5c8..6afcecc871 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 86bf985c84..a65ab074ac 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 9e17293091..57c2315bdc 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 eb09231386..c07d93fb27 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 97e19e7d40..65b1b538db 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 d4c45eccdc..16e32a7de3 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 0d2f3a79fc..ab8c32a15e 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 d6c4700e6e..cfd7f54914 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 5691e8d23a..45772ec1ab 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 a79fc901bd..9f600f6464 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 61d2640997..164553b371 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 1bdbea09e3..ef3db054db 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 2434a58e21..f2d0dc6ff0 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 b951539ca3..d6098f9851 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 04682837c5..5072a8d5ab 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 7332febf40..88187d854a 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 aaac04ebce..37a3552c2d 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 c5c5de8baf..bc89873114 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 0bb85e591d..150e07c4c5 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 d4cdd802f1..55c625acdc 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 af59aa7c14..ec75a76a0a 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 6ac1bcb671..5cbd23b527 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 70e9f2a5c5..59b803d332 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 a4f14a694d..df79f63043 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 ca3e7802d7..cbd2ec9d67 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 b841d2cc3d..b2b3900f7b 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 33c1b22b87..95489151f8 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 39ee8ac2ca..679095e7d5 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 9f70f85e92..22a7037119 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 9d54e150f8..c7842f4341 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 f1945b1c86..d0ea2c38b6 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 0b4c4ad658..821d4087f7 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 42b4010c59..0f9c35ee84 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 c29a54d2dc..f8bb924494 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 e20629095b..d1c25d06eb 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 35f022f1e5..3d8e0f1709 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 80387dabf7..2dc7a74bb5 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 0bbaca41dc..1d270db877 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 9251c2cef2..ac0b4162f6 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 6f93246044..6ca15bf935 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 f53fa1245d..50041856c1 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 72a5265273..aa9493f2a3 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 cda700b923..cfeb58deac 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 5d24551aae..cacb935db6 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 5880bac27a..ab971f854c 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 79ca806e45..c1975c1106 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 f9966691df..73d8a9b4e5 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 637aa23ad8..da6a122356 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 84fdc0eb41..70e0e688c2 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 ae4077363b..1b8ad0a860 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 4b7e0783d9..53349bb0ce 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 80a8e042af..c579ddf451 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 ae541a9ff8..bc5be90346 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 55d66ae319..14f5be5fa2 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 cc5af74078..0f1231d01c 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 706a88cc69..06038e0292 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 6993056c35..86612a0f24 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 56683ff442..440aaea1c3 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 04f22f2ced..40588eebdc 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 20a82f76c2..2eda0f4217 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 0ec55ce8eb..213b869853 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 c3a90a12b4..a548d58419 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 808ea23273..227d360a92 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 19ebe04f58..1c072df5c3 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 7979b39596..3cf662974b 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 41a9d719e5..2833205b3d 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 c6957d7fc2..0483a57cf2 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 80267d3ba9..844742d865 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 80af6d6090..f60f69f582 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 201a4f9fce..0372ff360c 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 6dbb277628..f494e86998 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 fc748bd519..a26cc81460 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 ed2ef74a08..5647cf6afc 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 5728d8e1fc..334fd82d32 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 555094e111..c9278f7519 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 3499326741..e45587272f 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 6320c0a916..793eec2681 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 85771a3f45..280e4d894f 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 6cd79b3534..b2a1c8398a 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 5eaa48b0df..44b9deb539 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 d9ec9a9239..54d855b22b 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 de282845ed..b78b6a77bf 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 fcde88d35c..2f14a74897 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 d7cde1cff8..45ab63e730 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 888a817e40..478f089aa5 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 20c7651d76..8ddd6dc906 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 36ab6f14a9..37703cbcba 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 15f3297373..0036f566eb 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 a9580b975f..69128917c5 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 76c2323e7a..e0310e1f04 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 2f8866f6c7..26105190c7 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 e52cc3f1e2..1697b8a9c1 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 28c42a704d..ed19f4333f 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 ecdf0f7b3b..f9b866c11c 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 5757b68d8e..e7047dbcae 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 4f60e8f312..a85675f859 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 2ac2958483..0b4c742b7f 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 61465a6bbc..8b373ee62f 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 d084cf1b44..bd9c544767 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 1e49f8a787..845e021bd9 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 313b730643..9c116e5f4d 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 af7fd90993..e63c503fb7 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 60b88222e4..c69a0e1b1f 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 473d88bb7e..4ce63076be 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 918e4a9505..0c80e51d9d 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 e0342df42c..8fc38af520 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 2996591c7a..c06b438511 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 a6779eb68a..ccdbddf2c3 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 1bbb9e6075..48d87737d7 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 25aa218a67..1dca642568 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 29e48075d7..a2ca2f276d 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 8c22185bdd..f6092b48ec 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 8c9508c7e3..aba4d4fdb8 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 4c4aea77db..0533bbf804 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 ae67052066..02298f004b 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 22e29f1019..76528959ac 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 969292c626..dae25be140 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 8539229456..fb08250acc 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 653e04878a..a118bfd630 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 179e3c6c84..65a403b04e 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 3806e05646..b8fe9d2c8d 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 c39ad900fe..5448405bc4 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 c027fdd1e5..d6033c62a5 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 6c51f68e1f..038d951851 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 93929aca2f..bdc4498e97 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 e01968fc1f..651a0397dd 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 5f044a986d..55d23082ec 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 f1f687e2bf..84c4f1ec83 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 7c2b2b3415..f4b364dfe1 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 72a882e6d2..a89824ab10 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 b3f64b62ce..fe84eb1f1e 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 267abd5200..e93a7f2d1a 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 e168b3be46..86796077d9 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 988e0deb3a..4d9959ae1d 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 5d63de1dd4..75d2bdfe61 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 0a6a59aef9..ae4ce012e8 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 87f8636ed5..35a4830172 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 582cf8f0ab..726cfea4a2 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 634baf264a..1e3482cbb7 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 163f2ac461..ffd9b6a7b0 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 3c3873f96a..1254117050 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 31c256e7b0..cbf47dc08c 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 3bf36ca33c..7ee5d21d40 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 4782dd9c20..0e8b253470 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 00b39f9326..0200483232 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 0fecdb0455..759df49397 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 fc056c0d6a..ccf5a13727 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 4693cf1409..1a178d5377 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 ec77816115..d07136c484 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 09cdb40e59..524733174d 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 f9c302f1cd..15c6172870 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 7a3b15490d..148b04893e 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 9c50647044..853c42e1be 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 1dea20742d..eb33be1c62 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 df98b35f2d..6c14ff3ca5 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 ec1a0108ad..7906d73164 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 8ab390bb4a..0956f2475a 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 b9f957c679..0cbc91d827 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 0fccad6d83..405b8d1d2f 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 8009864503..0a8a65e2a5 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 77d9af0380..08e536f1d4 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 c1f2aec458..e185627ee9 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 d10a54c159..28f69b4608 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 3ef64ff664..b58741ebf7 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 72064fbf33..f56ccb8b4e 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 16985ce646..05c9cd621c 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 1c6705f19d..4b57b92721 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 982a3e5dc7..680b8cfd2b 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 f386eb40a2..da71e76861 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 76bc85bff0..4fac4576cf 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 06ba020d14..688672eca1 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 c4646bb8e9..6822ece357 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 537009dc05..1bc05bd6a0 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 7bb1c2c23a..90f6b9bd11 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 a8a184da94..13179d3e4c 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 9b32281642..6f448ee366 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 9744a077d1..8cb3e1dd2f 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 672a3325bc..dd2b4b8275 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 9d5148133c..5766ae6a67 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 d0bd720288..c76bdfc500 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 326410dcb9..01b7465b3b 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 6c1afc4f29..6065d4ab1c 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 961e5dad53..49e040afd5 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 2f46c21428..e1ba3da749 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 6bd705f849..acae04908e 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 256a953b18..b9101deb49 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 720106f4b9..c4c53acdbb 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 afd4ce4ac9..b29b3029a7 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 d153e861b3..cebadffd88 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 2f4956390c..a88ca76ab1 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 f096e9439a..1f60052214 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 a2b390ad0b..24778cc505 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 343f76a632..0690b88b92 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 f689a4bd25..a40c41661e 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 1c2f5d3d42..dd2cd4ee34 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 936353e1a9..6c5c1f96d5 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 13178567e8..7a2d4a75f4 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 e68cb3f471..996e39c88d 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 2c546d6b15..782b8a8022 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 b67cf7ec0f..56be6e81a8 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 7074f382a3..a89f661bbc 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 da43b0a7aa..beefaca950 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 ce7daeb60e..4dd24487d9 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 1b6b4f5c21..eb1638196b 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 44aba8656e..4d9347671a 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 b60d2a418d..538b889d92 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 3735571af7..5b3e406868 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 3266dd2767..8aaf4c58cb 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 920675b1a6..22f0c0dc11 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 9cfab9208f..68641294df 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 496646c4b7..6766ce098b 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 550cfd4845..89a129bdd2 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 c42708dc09..183f6f94c3 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 ae39b3b4fb..df4388c2f4 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 8347010804..72ebda58bb 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 39ac1f2599..b13ba38b01 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 e893818d9e..9644190b90 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 c9a5f5739a..50fbb6bc61 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 47d274cc55..f4a9e757b5 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 85f6380173..3e93f408d2 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 37402a2518..f1457d6a77 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 c4be43d642..2edc50e15d 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 2c95119116..4a540b78c2 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 7ca531113e..4c9aa23934 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 cabe8bfdec..53e26d1145 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 9083eae7b1..7b36754f9a 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 1e5df4c0c5..3801ceab23 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 f17d8f14d2..78aa9b6924 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 737ad75f6c..44db5b600d 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 6b843362b7..103d496f2c 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 b2b9d2d40a..ce19e68dd9 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 92167a42d1..2cbe80f599 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 4cb6922c53..ea573fa54d 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 bc7b473ec3..47ff14d509 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 794d847357..a4e898429f 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 48677afae4..5d11db524d 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 eea3293c75..911e141fcc 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 513ae3a578..df5ca00597 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 0f636c6358..8d18b77a54 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 fcead85dc0..166bfc35ab 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 58de17cacc..f7a633dd2e 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 ea5272f610..e06cef998b 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 ba870643c2..4e396c2123 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 ca94f484c7..624478a1bc 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 bcf172aaf0..4b544ba1b8 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 dd1a1710fc..6048e294d6 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 0596600540..2c963f19bc 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 cb4c1e9784..35fbddc2d5 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 6014bf9dd6..cb46dcbea5 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 beb24ac80b..9805c87162 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 c1ee7fd39e..9707610fd5 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 9c77f8f6f3..65312ed1fa 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 6b812da5fb..56f1c2a9f6 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 f17f2b796a..6622124ffa 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 555b834ef5..e151fb026f 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 614b4f0b3e..a1433810de 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 5395352eb8..5852cdc790 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 bf9ce83e0f..8a1f4b7846 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 54dfb809d4..d390447e69 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 f7871b2ba6..62da18d592 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 5a91ae72ac..9b13007fb9 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 3f6a927b6d..4d364ca632 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 a10c8ba097..1fad9aa100 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 832ca705be..b5c9060bab 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 bc1319a384..d59c25909b 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 a4c6d1302d..5e55d29d0d 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 b36697d0a9..74cb23f5d9 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 ec2a384391..ee425b5b45 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 7979d8b975..8e08f3372b 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 7590597d8e..6c4ea15d18 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 8ef18837f0..37381235b0 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 ceef06d816..6e5af48865 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 8806cdaecf..916d0ef173 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 1f3187eb53..ec77dfa897 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 8d694eaca0..91d8c1429b 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 3c6e089673..bf130abde1 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 2c56270097..1592656307 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 fe8136d015..6b15e436ac 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 64ecb7872a..b91f2933dc 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 48f126c30a..9832d1bd24 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 1815eda4ad..4688c2de43 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 45dba359a0..7468985a9b 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 849ec4cb95..49910f2714 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 82cbffc725..6a7b89765c 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 c88d3767ab..27b0228044 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 c8c8f2ed1a..1092058eda 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 0a6d37c95a..61da1c73c8 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 c79ae0d051..1e10f64444 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 e3b03f9601..49d677a472 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 9db8c48f80..5769c47f5e 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 ff8b2689f0..ccd3117793 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 06189cab7b..348d95568a 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 2a1ac66878..1a1535b162 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 4b354620d4..979524aeb8 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 4b9c3b8d87..bc95320bc7 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 38a5f4ee8a..9db5b0d09f 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 59d3756730..11a09fb754 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 ecf4d74387..382fef52b2 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 06823028d9..5003f903aa 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 3c19126c06..73b5e693ba 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 740d2687b4..60c4c2a56d 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 257bb5c583..ec6617cf37 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 9562c2c9d3..263198d132 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 6ff87b9179..103c4f5660 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 e055457678..8205fdf09e 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 fdb358f9a8..621f1eb31b 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 5c28d959c7..c00b120a93 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 310db47823..393fdd3350 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 da28c5701b..a3ef43017d 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 0d9e617a85..399857a594 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 4892b30436..a2aa918d0a 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 ead969017f..ab5cc7ebcb 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 c4c172a14b..93e9e7c1ba 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 7846d493c2..a49d541c0b 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 7f5893836a..e2fd07d65d 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 bed01dbf6b..db47c849b5 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 c0b0fec60d..fd17ae5838 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 c2c85978f5..0d475cea0b 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 1d95a27ab3..71ecae4bce 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 0a068124b1..95a5a766ff 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 1b2cf1a1ee..dd4363fe77 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 0a8fc8f2f0..a37763c383 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 03003a33db..04e7cbab49 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 a0da1dc9f2..a9ec29cd1d 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 97aae865bc..533d41a25f 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 9976b8f6df..ece2aeb2b2 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 d495b43c31..96f1ac99ba 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 e75be8f1cd..2af4ffff5e 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 6322dc931a..b1d747e138 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 a3987a417b..f1bcee6d1e 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 98a2307f61..b173239975 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 bf62f50d1e..6b23e73469 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 0bbd1c9b50..04e984a67e 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 0c289e22da..f49ce963d9 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 4bb0acc433..dcb2fd406e 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 972664f62b..e53c75c3b9 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 5caac49ce3..583c0d3e09 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 cb5179c3fb..973fded3b7 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 1ef4493a2b..19a3a9a513 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 ad34c00875..63f7fb4688 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 899d44992c..511c0e215f 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 b195bf14a1..090346aac3 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 175377453a..531d2a0c4b 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 d4388ca16f..cb6ad29451 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 8bd1aa08e1..075875eb77 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 bd42da0d6d..878b70c694 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 92e5c55d95..3c0097b9bf 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 3eb6697c36..c917f877ac 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 9eeebaaf2b..ff0e438089 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 33dbc662d8..47c8b0b794 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 3676612582..dd2c267d84 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 7508fef77e..88f1b8cab9 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 e00c04a02a..8a709e2efd 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 8986ec6d2f..9e24759191 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 fe584db837..5445edb63f 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 ffd535e8e4..7c1d76d6ee 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 75023efa1c..5f9bba182f 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 141007d91a..23edad50f9 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 0dfe96a714..0527396e75 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 ca3da549d5..95f08ec6f3 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 5bbac1e8ff..8c442f02c1 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 e3c5afc32d..6916e1b5e7 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 2df2fe3c69..044f4cdbc1 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 89661a60ec..395cd8f1b8 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 d7ec0df32a..802fb5b8b2 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 f702ea0b04..89ed3dc6f3 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 a830528571..964cf3a1a2 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 9b277a0aba..4d45eeb881 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 3367b23b06..fff916d01c 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 ccadb3bce1..3c1491b949 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 3190b6d98d..b9ab1d60c1 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 e26f6d32b9..b235c56a46 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 e3e8a1f991..1fb914b386 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 2961c61b03..237a340b92 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 de212b986d..7ed19f16d4 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 d581bf4724..ce455101bb 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 cbfddd2c8c..88fac8ffd8 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 31871fdfc4..0ed1b3abf9 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 dab1c1cdf4..d579a54e1c 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 7f8e99f658..6ebbe47eca 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 d30b468bac..c505ad5c98 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 6baee3a39f..2a2e890efc 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 7721f47dc7..df33a67b61 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 26adcc9f53..64e87d1247 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 5f9b7b158c..ec780d6e40 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 9fcc7ee2de..1cf2a55c1f 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 4f193b6429..36ad6e4d25 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 81451103f1..bd30d96485 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 d9b0776f1f..1157bcf85d 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 13ca02611d..c91efb575f 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 9aa220777b..01c60df860 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 575cace175..47991a643f 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 317bcf38cc..948846fe68 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 3a48650423..87a196455f 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 e495b557bc..42fd4faa29 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 74a301ac2c..50a9af2ffd 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 f93bf8435f..a7374f726e 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 bd40305f53..8f00829058 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 b3f4dbd132..51e77df8f0 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 3be8e74438..bebb33d7a9 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 782464cd24..f0b8f50ba9 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 fd76b9e454..60c2d89c0e 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 fb18ea7425..be30b6f98e 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 7a08ea0513..d4847e827c 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 3a3bc3ac90..a9debfc8cf 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 02db5bedf4..33735fcc14 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 a3afe24e5b..beba816402 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 0cd2ed74ef..5343a23d61 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 9a273dc6c5..ca87e03e8e 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 ffd9076f95..01637fc9c9 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 5ef9df19ca..606ea3392f 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 03154d8a02..e81013f740 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 8bd99b64ab..436f9e588f 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 2bab66f101..f66335a056 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 9ebef061c2..5ca8efb6d5 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 5e1b010453..dc9701e6b3 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 c8ca48b698..c238574191 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 64d55a74af..505206eb9f 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 22e13c4f6b..7e3a23132a 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 f2bcee87e2..bbb82ce6d5 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 f293146e25..66fdced565 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 29f48b235b..0aa1d13a9f 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 2c023da318..46a8954b00 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 1e3aa01cc9..ea69be1601 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 6d18d58bd0..95b1ffaaa9 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 d640276c5f..95f7b78b66 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 0b74788c3e..d11d4a3188 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 6d9c3787de..c79f3626ed 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 de4b063dbd..5ba8cf9ac1 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 941f58263b..a5f0ed5172 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 c4557b875b..df97a6aa72 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 4ebb59d8dc..a2401243cf 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 714384a25a..ec83b5c205 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 7b6d4ea502..4e2c071bde 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 4095a7bbbe..2117208099 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 b0fcc6b67b..0af0e067ae 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 d8a701d277..4225a7ac36 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 0f11f153fd..68c77489c2 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 f6d12f2c4f..0ce086562a 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 edc7a8b864..07374f854e 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 2fee0dff7f..6184df35ad 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 3f49d00aff..9390842c85 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 0bc0a5d28c..712f251367 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 a7b1a9d714..768666aa4c 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 8f729a5a79..3442755b69 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 52bb42ee13..e47e2bb65d 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 f4c1285788..695ae05e2c 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 8b8dd360f6..e308a2aba5 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 dfcb65a4ca..9bd5a1998f 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 21a6cb50e7..e26be3de0c 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 99ed8ba8a4..1491ecc3ff 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 440f2d1d9f..22a1db1dcc 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 80d22794a6..bbe4fa000e 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 fc5f5281f6..c0845df906 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 3bbc8bca6c..bc60d918d3 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 7fc462ad64..a8a2b3ff8d 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 ebf863c074..b1e334ef5a 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 805a12a49b..a1c4d48045 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 1d4ba625bb..2f0d8f8015 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 ea1180fe50..52bf9f8ef9 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 4cd4498487..2e9c7f580e 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 537641b296..31108b7cce 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 847a5f0f88..16424c0570 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 9c5be1c6f2..3612035158 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 326a82ffd1..f1e2947a25 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 b2cc6ed604..c056fd172d 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 a7c69ac12f..0e83c18275 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 d636f9cd52..969be8121e 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 3f019eb5a4..fa3552b51e 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 58c2146963..802918b7b0 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 2e8dcafdae..ddfcd8dec7 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 f71038fd35..c58092759d 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 222bb987ed..9108459fe2 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 8545a17769..3733d50aaf 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 839731e29e..e3d4057afb 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 9d9cbd2ea3..66ba5e80a3 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 121c1917e0..5c1e230f5b 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 7a04c16fd0..ebd5a359e7 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 4860714ae6..bc5d96f5f9 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 248cc87aa2..6caa42631a 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 84ae53e75a..625714c27d 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 4c4cbbd411..565abc28d5 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 04bf425cbd..a8fb85a082 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 9258386695..aedf486d2a 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 09da762034..532d016b4e 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 d6a5835e05..bd11eab6db 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 9eab201a74..bf08702157 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 7a6fbd0bc7..faf7a5fb96 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 7b86f1e454..e12316e2f4 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 2496177822..f96b2181cc 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 e58764f791..46551ec0c5 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 d841a1116f..0b0d73d8f0 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 2b6226765d..f95855e6e6 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 e807e6cf5e..3e51e432fc 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 654411ae32..0df7f79958 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 aa3b177a66..5e9ffa1158 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 9ec4504931..df4893713f 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 d41db37669..b48c811f57 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 d4e3f84527..3860076de9 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 edab0b88ac..0b21a33e14 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 d385b2d42e..7b6c295be8 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 51567acd1d..ea391f91f7 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 930938cb18..ed62ce5a31 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 c190d1de95..c2cc1fd11c 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 56def927c0..3440a690cb 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 25292d1124..5a50a59d01 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 f1b0315436..1beb053383 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 8cfac5d18e..f77f52082e 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 21accf4091..114e0c5f88 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 2c3a06ff33..f1917dd468 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 188674c4c7..43fdc4b044 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 804abdadc2..2a0f17fbe8 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 37d3ff7438..eddfb9327d 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 b880ab7f79..5fa2283849 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 2e533d3a81..807eace4eb 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 7a8cc9b61e..c075ac9d9a 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 230b10d284..3bce95d121 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 065bdcd7a4..4f0028e830 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 c02d7964fe..bfcb5539a8 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 97363b463a..224e364170 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 3e0359f6fd..81aef3816b 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 8fe3004eb8..bd2d205b9d 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 e3cb60e919..42bde229d4 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 8cdd5e11b4..3a83d7eb14 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 60614c1040..0eb30f1c03 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 4c3715e445..d09914bd29 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 f268d872e9..a9ef7d59ab 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 54238eec70..686d9d82d0 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 9ba6f1e1b6..7f5074134d 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 af3eb8612e..1a0310cb9e 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 e56669e054..8cdc6fcc33 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 c0aaeb243a..02ae6d8e3e 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 af0bd85a08..945450d431 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 7560ab3929..fd4c172ab4 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 79bc8a6a0f..0024ba3202 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 2ab0dec5c0..a80c1d742c 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 522fb45412..be17a0e060 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 f4db668d8c..89b3f67b64 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 1670b35b0e..ab56bfb5c2 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 34cb956961..e8cfc6b5fc 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 ebbd6f6ee3..78d1c67469 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 58b42b0640..246b3c1ae8 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 cd11b99aa1..ea4c2b5e14 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 9d6bc506e0..48fc03f690 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 462536424f..bb5ca3640e 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 488185bb54..558dbd6186 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 96fdfda04c..f4a35eb011 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 3d4afa30ff..61bc796e35 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 8c4cd318ef..d26aa2ec3b 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 9055a3cf78..2d579d965d 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 4838a193c6..ce5a72717e 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 78aa874794..04cdabb72a 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 6aa4965ad0..a7be9ff88c 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 15b26d9747..30465c32c6 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 8cef98dd2c..a5d601fa4b 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 7e2e2e9114..31143a9dc9 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 e8688ac846..a9a37b6ea8 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 ed5059a7b5..7c65d175df 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 90989a0ecb..ed90cd7641 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 f002e9f1b5..3e05423e4e 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 8cd8dd504f..99f38dbe2b 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 b0a5898813..0818a71588 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 33421a7e65..4a085e32cb 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 4be06a0abf..46a10e91bf 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 8b66695692..eff271b3d9 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 ad02801b73..c45890f76d 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 c696410825..676045ad2e 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 82927f824d..3f7f6ccb2e 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 460b8c6517..d585f5e8ba 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 71430f1f38..328d5a7480 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 cdd80a9536..b99fd8806c 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 d2bdc5a465..07bdca1b15 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 e4eef930c1..b24ec554d3 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 a9ec6b9633..b4c2377f47 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 c00d6239a8..fb94e2ce08 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 8a06069a51..87c82c2cc9 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 6253300d45..1573c37554 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 676e9070da..335e5ed44d 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 05c2cc8690..7526e00641 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 a277ec43ed..c4ce39531a 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 27e76640d0..1760be56ee 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 a286f63dd9..650d9c7070 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 a216f3512f..e863d491f1 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 c84077aa66..7c745e4268 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 66a197aaa1..5a82c984cb 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 db2c42ad63..db2ac45a79 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 f8df37cc95..4ab762fcda 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 a6b2673a27..01da952b83 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 be6fbacfa4..f53dfa97b0 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 e2f427952f..b48a0dc99f 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 1d1e56d0d2..4c66c64595 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 f1dfb78d2b..2d78aec0a5 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 fce4197097..4ad4d1ac59 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 742367f4d0..3418a9d203 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 22dcbd3070..967ec4be95 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 d19d4e6bc7..c25a68e937 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 8a442e288e..18539d58c3 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 71a6115e5f..58c62ce7a0 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 59720cc583..619f9ccf56 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 39b106a305..6d6fb1d17e 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 316d8fe7d3..9c16da6496 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 90369f9653..f9b1f43608 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 e23e1bf904..e4bb3f15ab 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 804ec478bf..0929ec6945 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 4f442927e1..81d520a290 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 894462f18f..cbddf05fc3 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 15ec63d85d..df6ba43436 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 971053f9f5..f916c33c05 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 ac202f18b6..09b22b6c92 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 8e2429eb29..70f55c9e5a 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 e8b55cd662..01219c0423 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 28e69449d1..36984b9489 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 e8208684dc..cdfb8f9a68 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 ff4ae22dce..c155065919 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 9cb7ec8d1c..3c12c29908 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 b80e40eec3..22586bb40e 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 7566449c9f..0473d121f6 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 5f2a7a26aa..8ea4445730 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 403db2a170..dd92fbad3d 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 55bd192b52..c93fbdb4a4 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 0bca769a51..e7c3a65274 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 c0c7ae84cf..905e8891fc 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 2ecbf9492d..c61e00c939 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 bb0b1f098d..9e1dd1a938 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 be55b3e5a5..60786c0527 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 a4f5494215..393f956d76 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 d7f3d09efa..0c15feb65c 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 66b056ac63..da7b3eefaa 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 f43c34eef6..c2b3422a9d 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 fe5449db9f..89ee1d8856 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 6bfb51695f..91da3f9c42 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 033e6992bc..11c0753293 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 07f459ec7f..20bbdd30e1 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 91f2a2f27d..d184070dca 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 11d2cc67e5..e339587106 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 f46b83b2ce..944ae170ee 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 07b659327c..eea78ab81b 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 b8712b20a8..9ae37c5979 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 c327078d97..22c527b46e 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 89ad4b1cb1..5b9dfd78b9 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 7bf9401c52..f4f4c0f624 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 09105bf82d..529b726164 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 4634bfc0d2..805044419a 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 15d8fda0de..ba0ea24ac4 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 e53970f430..45c0b5d94b 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 ee01cfa534..0393a75c38 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 5aaec92132..3b189f2606 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 1b08fc26d3..a244085616 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 21a1c6de0b..3eea4affaa 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 122b847427..d9173c9a62 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 1da50e4540..f6f0e51a95 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 80d5162f20..1e11ede5dc 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 ba6c3d5c68..ed5da4fd5c 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 635c82fbdf..4c9e30c43d 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 5711b8535e..c850d2716c 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 8b128b56d3..c8444c17d7 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 5ffd0be74c..fec8baf27d 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 cde7332a5a..a2d15537a4 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 751176e50c..c5cf83b108 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 8eb800b4b9..1ecac5b12d 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 bd01491b0c..a9678b4d72 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 789e7adc3f..e26f527da2 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 ae323185f8..aa5b1ce854 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 5b38248c7b..7ca0d24613 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 96119b3152..c412ad0976 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 300289ccd3..aadfad788e 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 4128ac8785..1a808c344b 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 3faed3ffef..6c2b7b1c81 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 935aa85bc9..f18402e91b 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 84d1491c14..a227f99c0d 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 ec6b2bf89a..59b8bb9ee4 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 6fb651a814..bfb2f3da82 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 5856ada3b3..5d106dfb6d 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 21d82bc5a9..2f35ce68c9 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 c715d6ff32..49a0ca4a2d 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 c9d26d1a57..9e6008a2cd 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 8badd96e24..e7fe4006ef 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 e3abce4ac2..5088712266 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 97f4c462ea..a72cc916d0 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 bd387c1095..4c3091cdb1 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 fd998193ac..f89c180377 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 c8a9fa0141..3df185c383 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 429cb68045..997b4056ed 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 a7c3a06410..ec1366e36c 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 36df5dacb7..9b543e0798 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 4ec6460df1..39b3edc7b8 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 9842f13862..b7cd8636ef 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 2236737649..01885e334d 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 11268a979a..8fa21088e9 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 7ad538f1f3..65c206be4b 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 4c3bbd3d57..7300a43269 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 bbb06416ca..f55f8c0274 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 675fde0b1f..8a6f55b4d8 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 b922cd1677..0777e3a529 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 a95843fca8..9ca40a5987 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 f3cdfe53f9..f6a989a727 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 e2dae09675..a4edd33a28 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 476ae50759..a7242bf192 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 130def39a5..7d9563e7f5 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 5d3d669c73..96270a3bb3 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 10997ee147..9856826b59 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 9976df06ad..5f81d8cda8 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 da64245a74..abeb53cbe9 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 863fcf7738..31d28f34e2 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 56ab13b01b..70ed54943d 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 595831e4d7..971d029b8d 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 a385f2351a..06657aacdf 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 4940285a5f..3aeb106025 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 c0b452198e..e29198741e 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 0acadc8922..1254880af3 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 df181da792..d61e346afd 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 a2780c954b..7d5a355d3c 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 7a7e306628..678622992c 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 4110cb8e11..a490a4bc9c 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 684a458d3e..b230b64db7 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 32f2736514..a0370e44c1 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 cb8e92fdc3..6b65aae968 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 d639031cbb..fd027a57c9 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 2205e4c083..ffef1b917d 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 0a721cab6a..395b43d2e2 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 5fe238f91a..fefa267601 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 18783f621f..d6f142af5f 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 eb32c3699a..a46d4b5526 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 ed65c4e642..709dd04e7d 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 65666e98b0..ffc87b1367 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 34be9a4ebe..e569aeb377 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 66818b7ae7..081dfda2db 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 5afe9bee9e..a4dadaf1e1 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 c9895de45b..26e5053f09 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 415477698e..22228d1824 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 76c711aae1..0dba2a3263 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 17c339c92c..b9efa815dd 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 91f50cfd3e..1a7580088a 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 db36f16f86..9bc6898693 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 aeaca627e8..c04e8e2699 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 2d558c5043..afe654e748 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 d258fe155f..904c832a2f 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 6a48a77a88..85f77a3071 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 8bc6d7d726..5d9be7c7d2 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 53ada53ad8..bd35c81ece 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 6015be83b3..b6fe3a0f51 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 2e5ef2c3e9..1ae5636f4e 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 4aa1b6b080..c3a46718b1 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 e3fa211ad5..e7fae7b161 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 7a98880a77..390f964723 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 f707e11ec4..4de4eb2098 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 eec4ade5c4..537bdfec72 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 cde82b16ec..7256e2bea3 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 93cd651644..c30adf69c0 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 a1aa70b9f2..890ffaa460 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 f52642f8a0..0536749556 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 a96847a331..b9caf2a001 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 4cab3a2d52..a57f348f98 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 e00ff12d24..def694b113 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 c2c7351c09..d3cb265ead 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 c3f70cdec5..64e2ace96b 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 4435a10b54..ebf5f571ef 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 ae3ad9e8a6..7d0a076679 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 6117ee2ace..8f2a0befec 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 55d75b95a0..81e327d4b6 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 3903b397ac..68182ed2a8 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 4927ef0363..6bcbf2f1da 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 53a3d27dd0..bb68b43137 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 0c31a6a33a..c509f278bd 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 c7e570bafa..73bacb7f49 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 f5ee1997d2..80397b7748 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 a449ea198e..0e9f3437b6 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 6c0ded41ee..4eecabd82c 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 467f8a4336..d5440bcf40 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 d2746f3e27..6b71ce46f5 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 464853fc0a..fceeb4e781 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 0be7e890d5..def1838613 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 6622749eaa..d3e4c77bea 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 44ee0460c6..a003f8e5c1 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 d4efec3afa..918d03c398 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 577dcc3f7b..332a8f06e7 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 442531a406..89451ecd72 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 d5d21e6d3a..71a6fb283a 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 53aca375ad..96e49ee3be 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 a0e938b92c..df3ab73603 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 13136ddb26..3c11fd44bc 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 e4cac7416f..f80783f62c 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 e8d4fb403b..fc02023258 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 59c555cb3c..4cc8399663 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 19ebe54ed7..3461a24475 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 88eb4e7f72..d749da8885 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 895ab5f713..e645237270 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 5045e10ccd..d159772ff0 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 0216edb44b..c5dbde8483 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 2d4d4454a7..74e8b502e0 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 ef8f7d137a..c85577a622 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 d018978003..2ae3319dce 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 f40160369c..207e39350b 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 adeb79ed28..9d0338befe 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 d90bd892d9..6e8c991d7a 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 5b76246d8d..f54cf30935 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 f06b2d956f..e2c2f9f747 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 b3c4a4e8bb..e7c59975dc 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 5d5762d0c1..9326c8bd5a 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 039ccc61f0..edab73f7db 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 a53e6764b5..e9c7812359 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 4b56f76141..4e9c5376ec 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 aa3be4707c..e7a84913e3 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 c2564643bb..3046b10ef2 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 566c278091..5cd14cc72a 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 a47b92fe5f..39c1795048 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 53862c07ab..f9f0c135f1 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 2eaa65703d..02dcdca230 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 b9ad4ed9db..53a8feb46c 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 12391d646d..455f288367 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 ee8c6f4a9a..341283c59a 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 447b165cff..5939534267 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 b2f2a63302..159253e469 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 d39f5ca3a8..4a4a21c0ce 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 5febf51953..b61c0fcf39 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 f16921a6df..a7f9465a91 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 6b62433746..6f9b4cf0d3 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 6200bf67b8..d97b92f771 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 61a9d64012..baf2786042 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 14ddf2a9fd..cd7e35178c 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 2512a2144d..97261b3ce9 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 109c06af86..448f1e3bda 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 732f209239..45f76e2b48 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 3467117cd5..1362b48f44 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 b2fa74db10..f6000abc21 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 5e3982a502..1e79bbd8ba 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 65c9a46589..22f1ec21e1 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 1c1d5a20f2..9420035b35 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 f82c5c0928..f645c5973b 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 b0f4aa426b..680fe05f04 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 c64631b71f..39b9a7ede3 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 d5f6349ba2..c917396423 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 29a63fe6d9..013470a759 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 3268a6d983..adf862dd20 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 0694c52785..266bd322ac 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 1d1499bc89..b7d9d3e10f 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 9131cfa86f..a7910ac6be 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 439faa46e8..e9dc385ce3 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 1f1b1c4fca..bbc15207b5 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 6421412165..0a1172613a 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 9a40967944..65d7f063ba 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 d0b9a4d503..c7edb4de5c 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 cc315b06bb..dfca6e5c06 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 cd37661cb0..0b6cf8da76 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 d1978bc6c8..8146bd2347 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 c379258901..52cffffeb9 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 6cceeec66a..f8e5ac48e8 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 19620aca0b..a90583e718 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 a47c2a7668..1925817ae7 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 ab25f93567..538529c378 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 ab5fb33e93..fbeac2b44c 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 c1a980543d..1d1113653e 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 fda8bdfd84..6292338c7b 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 282d3c6736..36360966c3 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 fe6c76bc0a..134140ec98 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 ccaeb2fc6b..4bf39618b4 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 c7c40354e7..b42878557e 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 c3613f0243..dbd8f4c315 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 8f4c16e458..c67306c12e 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 31f3b9e562..44ff01cecb 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 d1abaaed67..c4a2cefe77 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 46d774f47a..65eb6de040 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 e1cd58c46e..8a6ea914fd 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 5c80afe092..d21855e13a 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 d45b0a0e34..3ca5c1a0d2 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 f7d807caa6..1705ea1b7e 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 6d1cd1ebd2..04fc30dc24 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 caaa0cc8f4..e27c529f1a 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 166b0b27b0..504346b4e0 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 ecec12131c..337b354acd 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 a75b6d5f14..250ea0833d 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 ddb9ab3e34..a14b9da3a2 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 b1c5c700e3..7fe27a516d 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 8316d830cb..6e8bd257c8 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 da428e2826..4c6dbb11f8 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 a75513c76a..eb7e6ba20b 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 5b34bf4db4..f15f2cc6a8 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 fb41a0dc64..6573f8419c 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 3a4a25d0b5..9fbd814fb8 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 1726894720..d488bc77cf 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 c47cc46963..8038cf52e5 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 5a8922ff63..855270e2a7 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 107fa0840c..42c0d9dae0 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 b441b59d8c..827b21606d 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 fc6036f6a9..4c47027436 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 c337c2e084..7583784b33 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 8ddcd275ac..960f643ae2 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 57fefb70b5..2b37bf86ad 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 1d6a87aa21..1f3b80d8e1 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 08835e644d..81e5ff8092 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 e215bb7d2d..d234a34a15 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 e1ecbb0ef6..2aea8d6978 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 3eae410fdf..417d20156c 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 06628649cc..9dcea18245 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 aab0dd6052..03a1619050 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 d8c6311ad0..57466c58b4 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 b3f3d80342..31360bdfc2 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 2bbbefcf70..0ba2dc6d57 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 4a19c6bad8..62a3c202a4 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 84e7c032df..d02da37546 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 e9cef29f46..e08b4121a5 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 fd2d264170..68b0073ba1 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 54b70ad44a..779c87121c 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 2f9b67143f..ba3854cdc6 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 b424423eea..6a09e69bcd 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 28d88ae046..e34dd0b507 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 340410e493..a73d673389 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 4ae22be5e1..54b6bc29ff 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 10929f2287..6da5c9e3fe 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 7f19faa2d2..6a5e62ad68 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 82d6f45dc8..b3c8137c47 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 54bc0c7b64..97a83e0049 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 b12b7271da..686b32fe1b 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 d872550daa..6f55f5272e 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 49a18b3abd..2ea9303434 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 77971f2bde..8a3500fcbc 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 889bb32ede..cba7c1bd4d 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 48ce9c3a7b..9bdcaee5ba 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 2ea86d9263..def3426d30 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 51094bce38..b1b3913ed5 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 6ce59a248d..cd8ee6e074 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 24c3acd3c3..0a9d834328 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 f1ea4979ae..f4db8dda2c 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 8616415dcd..2e56059b98 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 973143699d..e06b9131a3 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 922cccb469..32b7cd7453 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 c920487794..1e9f1382b9 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 a3582562e6..eec55d15af 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 38a7a172b7..1e18cd1b49 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 9f7636da6f..3bde9db4ee 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 547f778672..eb904414e4 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 d676ba62ef..013b3a41ca 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 dad110cfc3..9ba965efb2 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 8fcd45ebc5..363d337869 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 3f9298928a..44ed3b0121 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 0381c19a24..ec7f576bbb 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 89d912b3c0..e784c2d8ee 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 cd12c8b7ad..d8f9a4f919 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 429c237483..b1a3027d32 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 9d388da270..e996914f21 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 85765b4239..e3efe556c6 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 d74ab62bea..e6b311c69b 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 7455d333bc..1147b245a9 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 b1d96c4242..cebe893e53 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 ff716f0255..04af4797ba 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 3b34d48fbf..e8b57b68d7 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 fa223241e0..ec8850e7e0 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 d6445d8c32..91be75cdf0 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 8d1f2fbf18..4ae27490e2 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 a6f6040aac..cfa45ddac5 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 19fad288f6..0b6620c1b6 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 9c6279fe9a..fde379d075 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 da8c2f0835..8fa61342ed 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 260e153fed..e3bda8b95b 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 2f9200f625..713c13e594 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 aa6305129d..d27402b6f2 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 35d36b0d58..2bc5ace7e5 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 4551c60aab..14403af5ef 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 fe54ab3c11..d0f112a479 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 1be0a21bcd..aaa55afe5c 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 0d015b078f..d3654a3a07 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 947507516a..df5238610c 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 3e129b5b44..0bbf4277a8 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 12f7c0fd1f..cef9206673 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 70f5b45d96..c0b8781a1f 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 8640121a0e..380e3e90b1 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 8b7abf9399..57c2b8878f 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 4362b6444a..1c61ae05bc 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 92d7658e3f..c3d9d20d24 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 97e73762a8..467beb0c9c 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 69a6fc24d5..c5950e89d8 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 c53a4ab676..1e54a82fa7 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 cfef5e573e..404ce5b2b5 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 bc5548d986..ff14d8c23f 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 82d4afffec..b06b481120 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 93822a4930..c510179280 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 e35ab3e03c..42fa4f9f28 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 80d1f8033e..b53a86d3f3 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 760821f15f..37b998fd77 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 89beb20f90..075da1f63e 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 4cfceaf6b8..a92d1ada44 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 b60f433312..5f34e87b72 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 1d1ec86c41..126ad8303a 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 fd0114b89b..aea0697e68 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 6d804dc568..fe5dceb67b 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 eb23801779..0ba4c37786 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 53b92dd703..68f4af37aa 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 6decf420b7..d64c7c3bab 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 1d47b6f9d4..3b17df0722 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 0d403a6d0e..b05ef6c9ed 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 a99aa6db62..4459641e17 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 6ceca0e7fd..19734e73b0 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 179121d428..6b6e7f2a8c 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 4da452919b..b339c99be3 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 234b51bbe7..86695b9ba5 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 8e59edb943..2e2f80522a 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 54ce2c8ddd..e125a429b6 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 5fad74ddc4..035f6aa3c6 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 7d86e58f96..a1cced1500 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 d1aea7b6c8..ff4917552c 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 92a8c01200..71bf50d366 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 123f671605..4f96b4dd0c 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 bdc0b7bd7a..cdd0e4fe6d 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 ba76b89806..afe2eb8faa 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 ff7d4177f8..fbc5340d86 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 92a07a2f70..6eda4f9c89 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 b108630f12..e44d798ab7 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 e23b4965d5..9564bf69f3 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 7769350d41..e1baa43d0c 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 5fe82d0f4b..2553010695 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 cdeb30746e..da99bcce8b 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 ec2a37dd07..f648283a2f 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 a656f92e8d..e36c4f628c 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 0eb2702fdc..3b8ae2654b 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 796a881797..b31f98f49b 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 8b9a71ddec..8ac9405b2e 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 50b8cd568b..a307f5e7e7 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 e960a7996e..0e390337e0 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 a028b0c638..7429a8a575 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 248d2bc6c1..ae58f2462b 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 edb09aad0d..7cc92c81d0 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 a48bb3561c..8479f94ef1 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 34db11e662..50e0ea9762 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 7dcc0f7feb..b3db03e582 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 fef7d20a1b..0a6a91ef50 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 70f8ac2d90..7ca1e58771 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 b114aa793e..5ceb46c00d 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 fdcf2a8fda..a5988236e8 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 157bb2d217..6070d72c1f 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 d5a846e124..7bddd4b425 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 362cd1b464..0690838bdf 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 cd8a00f23e..91697d7c12 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 81139854c2..b675a92eb0 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 507237c15e..7504ecb023 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 37bb7d8fac..5d0ca9458e 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 bce6b5691d..8e1d4a8599 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 bda503e1ba..4b21486f85 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 b03c7f7c50..66cbfe8039 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 eaaa4fa7b3..9824c6b3b5 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 650f0ba663..21dcc2e3af 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 175475a2c2..544dac1c86 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 cecff70e75..49ef1cb897 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 fadc4ad942..f9c81de7e0 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 def2ccf2ef..4ae138dae0 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 a23feb6802..05cf9b7c41 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 12161c2132..a11c288ac7 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 0e9a7c144f..e206b39ac9 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 b103e655f9..d437656de9 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 0da362a8ab..0b3d4e37be 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 0160c8a635..88f2a5038f 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 aa5fcc6524..3aa3200f0d 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 406b04be1b..5dd3401745 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 8983a5b16e..c44f80ee1c 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 714e7270a0..0934a61ff7 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 2e3c19e3a9..2d09dcbc04 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 0627f12b69..2bb44842b0 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 631ff7f1ca..e5d5fa7326 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 b63ad3e264..35ad40bed8 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 5420c5873e..17326e1f58 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 5f26d3d8e5..fce27df767 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 a76f21f35f..7e3e118587 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 c1c7de48dd..b7599ce41d 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 b3cc80b6a4..2932d57dcb 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 b6e4136a08..017711b70b 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 b8dee93653..8d15f49ee1 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 f5548a16cf..dbfe3803e1 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 7da8b205f9..c9b800541c 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 1130d528eb..caf30cf8ef 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 c2e34f2d34..6fb4def4ac 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 f90bd4b77e..9da2506a27 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 c0299d28e4..353fefa674 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 0e91cca2c7..2de33267b7 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 8978f44924..b8321484d8 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 ce8adb3c90..9f6b8c9356 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 2aa1f9d132..70eef42a37 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 062dc98f09..0dbd56fa26 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 c5404ba3ce..5c369c2dd1 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 f0fa8621d2..45d4e8a07e 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 4357e1fe8f..81a318b773 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 6334988351..3c7069e445 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 93eb430e96..cd6ab33715 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 e8551a9146..f248dad83a 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 b35f174679..3eab5129fc 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 54ac736135..a04c2e0797 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 4b7f2ca5a4..b640e0ae5d 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 b2a2f013a3..39882d3b39 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 26ffcd1f84..9896f2015d 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 692021a790..e61c017ce4 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 0df205ff9a..88d889de5b 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 5fcce2afa2..c108329880 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 f00f60fcd3..8e4048367f 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 da9a5eb3c8..00d57c8936 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 82e6c9945c..70cbefceac 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 d935aeb44d..946847cf79 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 2f842bc888..3e34c528a9 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 5e58281f07..666b829dc5 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 a334b84547..dac335be07 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 7a1b18e5c1..bb4f652b27 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 2988e983fe..a1db8b023f 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 78dbc8f039..39773f029d 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 1339c6e106..6cbc9d5ce6 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 f06d2f597d..3e6c759530 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 85d4e53f5c..9c7e88ef69 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 776aae2ea9..4ab4a57173 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 3eb7198a71..3395393d07 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 5520efb0c4..d3b0f04713 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 12a92d6d76..2f16b55987 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 7810d07602..63201458d5 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 10e90cb19d..c0a9ff77eb 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 87a666e57f..1e3ea41c99 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 05605eab81..45140eb4f4 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 17179a75f5..cabebee58d 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 81e17fc549..8a77850b3f 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 42bbcb82c9..88eb4b1c78 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 f9283fc005..3594242b13 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 c534093db3..b76e0c1730 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 fdba8177d5..771bd4d4a7 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 1a0744da7e..bed44c8902 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 35e3ab733e..8b2311042b 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 9f9c4e9a0e..cbcb8b3ab6 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 a9c756a998..ae62420e9b 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 a2c5f489ac..f0c1619b45 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 2d60fd5060..28b96bbd74 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 c940c126a5..a0fb2df9f1 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 d6e62f11d6..4af111acd1 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 f83049d78e..d32dcc9293 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 b812cf878a..ee6b74759a 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 47a8ccd672..cc636a9163 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 ad09924db1..fa3f193861 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 156173c15b..ff2d50b0b1 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 e1ef56e635..8beba6bf7d 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 0e558e4435..c5201ae1aa 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 44928baae4..3631dd2a4f 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 5d5a37951a..63071d464e 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 3ddf0ad761..e631b4021f 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 5d9fd6aff5..dab2f0fd0a 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 28ce7512e7..bb477d3d1b 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 c4ec761c06..529d4f36b0 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 3b2d25a6ee..a41f274344 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 3b33598fdc..fd5d6a65a7 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 3cb0148529..92d9595273 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 34dd6ebd45..48ba378672 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 039e799cc5..65ee73a41a 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 eb87b13424..6c122a2cdf 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 d2ac0cba6e..ec466d6285 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 53cd41b229..4776985be0 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 fdee3bf154..cd3a30f7a6 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 9175516097..8fb95f5951 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 56464584e3..c7d011e15e 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 c6194cb346..3a88d6425c 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 4c0cd79a9a..ac5a40a5b5 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 d144c688c9..0224e38cfc 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 63231c9a45..f866f8813a 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 cdad9cac88..9bb7b378c1 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 a642e8b88a..363dc7aaa7 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 1b18eac04f..f833a2fc3e 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 62721e653d..995fbfdd3e 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 229e00e19c..d3feef94c1 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 1f7113ebea..d702abba8f 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 2ebba46e78..a583ccd7fe 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 440bedbb03..6a212cdcce 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 6e0e258a39..c9e10167ee 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 4f08067e3c..d693424d0e 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 77521efc9e..2c06104632 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 f60dbdacbe..d6edb52fc0 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 d02c161c05..5ef8d5287b 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 7318cb9bd2..ca28fb1165 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 a68f80d502..bb1118bacf 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 b7ed51fdd0..a6f1560e7e 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 ebb15a100c..6fe5d749b5 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 1d0165c1d4..264d6528f7 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 e66190e2d0..6c15e18654 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 5c93815191..77cbbc2153 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 01d9f074a2..4cd3c799f0 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 c6c1ed7c48..bcc47f35fc 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 7986b13cfd..f11e072e88 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 b8ae0a10a5..79b942d2c3 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 bac87424cb..2d519e88c4 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 65c260367d..aafa8961eb 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 525a07908e..592823eb65 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 7e75e5c805..764c3d63de 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 60008579fc..73b60808c0 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 880b8063cf..87cce1a48e 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 f85a4af399..37aed89d24 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 a78c77a254..e42e490dd7 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 12e8b66d70..bfd5da74d1 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 ca0ad07569..d389f10e8e 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 3c63763a03..d67a742cc1 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 e96311dd99..89e912ddd4 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 287f1d37ee..2200a963f4 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 af064ada58..fad8574e8c 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 3319cc1627..396299402f 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 d616bdef78..a576f77457 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 83694fc84d..1437568d05 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 289ffef4d0..a77bccaafb 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 d5c61714b2..abaf773c28 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 a4acecd2e9..fa38ad343b 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 e68bec135c..257a5ffead 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 4389f778f8..c23321c71d 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 511d38c43f..db1808d92a 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 9b83a51470..64f7d2b304 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 f19e64d0b0..6481e05679 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 0200be2b69..dc0b912099 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 a0da4f486a..d26fbf751e 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 d7d01fbbb5..64c442c171 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 ed656fdc79..6b599f5be0 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 c825834313..18dbfadb93 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 75b051a442..10f7868036 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 897790d9c4..ac26def067 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 d9b13f23fd..83c163776b 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 9220b4de98..2e1b203a5e 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 6badc94504..45a382c7e7 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 c984fca36a..d6dfb323f5 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 fddd2c3ddd..44770807db 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 0b8e0b0947..83153f48e8 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 52fa5a4431..75f6fcc451 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 b262be4887..6a62460165 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 5c0415ee8f..d4323d726f 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 5acc86150f..fce280d60b 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 df06d39b6f..d4869b7a8c 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 3fe21b1dce..bf0c068e67 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 bc9bf21378..fa34a15cfc 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 662956d178..80e436e5f5 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 9d88637352..531aa7550b 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 40ade228e1..c7d6988da7 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 d72063ffb9..a9d54b2dd5 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 02302fc8c6..5b7f3e73e9 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 0a7f07962f..c10a1fb0eb 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 c1ded852a5..7d43cb836b 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 c86bb1b89b..8fbc624364 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 6d2dd65272..a56d3cc831 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 efd3ce552f..05b0038d42 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 76285f10ed..39b51ab926 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 b7709dc7ce..2826251e84 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 6a4a4829c0..96c69999b4 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 48e0b3845b..8563b9b2b9 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 176eb0db9c..88ddc7d928 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 1a86369bcd..83c365a5d9 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 fe97c8e56e..6e24767a21 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 ceaf79dd7a..540197841d 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 b96e2fd37b..72699e9e89 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 9d17f92d03..3c3e8ac6d2 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 8f1b3a2d24..c96099bf8b 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 2367c71779..233bc4d599 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 fd31b88f4d..8ae20b5dae 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 67e3e82ad5..fa4f7bf9d5 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 5dfaa98dd4..2d9f161d54 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 a1a9fe9bba..950cdfcb7f 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 ac4098f8da..6970bfa1f2 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 29404684ba..c0f637830e 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 c09bcb86a4..869bf08459 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 b967e21218..29989feb7b 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 d36ada9478..c94320fb4a 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 f7f1ecc116..741bb69d44 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 0d09e035f7..606841c540 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 de12e94e40..254ac94539 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 0952766ab0..9c5289acf8 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 1487fc0bb5..d6915f1ba1 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 6e694323e0..7134ac093b 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 1d9264d160..259842b361 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 806eee998c..08ec97ff93 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 00b37e55a7..651405dfaa 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 37436dd386..4ce6a43193 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 2fc2f4f593..1e573f61bc 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 197278a755..94519f4e79 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 19e7acf2e9..3be2c443a8 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 ea6a7061e3..fb91183024 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 4822c4d135..9e5834ff4a 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 33b123af70..276dfaf7ad 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 717bb56955..73b07dd2d1 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 148faab62b..9faadca900 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 3eedf9489f..f792b4ca46 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 895e3c1906..182f9a1f0c 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 5040faf832..431c3b4750 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 a70a33de7b..637d2c2ad1 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 a98d2f74ae..15b07839b8 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 52074cde77..f075d0065f 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 a167b5f35e..1553b728d0 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 5c88d0d021..1f9054e902 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 6f17130024..7f63b16a9a 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 dcc276123c..3cff0ae45d 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 3e486cc498..33da1a3b62 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 8a399f2793..22a3507974 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 2968f12c97..5fe48d198b 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 4171c4f302..e5dd71805b 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 42cde025fb..ee5c0f73ea 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 ced60fd348..756b46c5e3 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 fe52dfaa71..185853045a 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 03f9df289c..7838f15a3b 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 6b0df4e7dc..8ee787c01a 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 ec89f21d7a..2add918749 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 90c3d0d4b7..52814e0e2b 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 b61f9d2b66..04437824f3 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 ce458db6ce..d762e4308b 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 489b4ccc0d..a68c8938b3 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 ed6d41519e..9d6cd321e3 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 960ba5527d..c74e34ee62 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 e4aef9daf0..49da23f650 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 259dcc9c84..59de0a7142 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 1791e4d830..bb4e4542a6 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 9d90e13820..c31ec92580 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 934a75b2de..c3aec4485c 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 18837c450f..03d159f764 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 e42cf84506..dcff40eeeb 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 02883f66ad..f2908d90a2 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 4e01675f0d..a92510dba6 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 1070f01b90..39e0cdb488 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 42f96160b1..769caddd55 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 7b5ae1ac82..385109ab93 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 3dbc362285..082a7d4039 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 886710f2c6..0601692bc9 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 6e7abd1c87..8682599ff7 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 7af9de68e7..e7f4ea0db6 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 a37c64899e..357b9c71c3 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 0c28ae6773..e75742c1a4 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 9f069b748f..6babb351b4 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 5fa1b06c0c..e5bcb7575a 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 99feddd354..a3d4f9f504 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 bb2cb47846..73008f4cf7 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 63491019a0..d92c9cb0ae 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 ae35d2ffa4..ca97067b6a 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 1cab66dd49..e54bc23c29 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 1c3b38b47f..93737318be 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 314daaa1f4..ef24582486 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 069bed98e8..facaa0a374 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 bdd6dd97ed..ad09e2d114 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 7188ab7eb8..34c945b667 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 aaa4eead73..bb0e064f4a 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 8fd0563b42..f9a6a04895 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 ee1d98c780..38fc880c1b 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 1fc86ed90b..ad9e8fbfb7 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 c201cad9f4..dca0cea2ae 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 c2952cbb84..473797b1aa 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 886b4b0fe7..23de0eaf84 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 20b1769e1b..342f56c0cd 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 e607a185e9..6dba50c414 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 0b8a34b55b..df559d86b3 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 7fc903c406..bcc1f5d232 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 92f8ecf3e0..20041f24a7 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 41b787e811..7b602d3b29 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 f3c46ff26b..c55e4befe3 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 9d3a39545d..97ba39c5f8 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 396e9e6a13..d8b42c7d0a 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 b0b6937060..6a2130a984 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 5f0e95448b..aec7f94e10 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 1cf2ddaed0..89b1116016 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 131e2f882e..3aaa766ef4 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 6ae2a7b2ab..744cbb60cc 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 303d23a07a..181a3fc40a 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 4210edee04..389a7e508c 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 7678c24163..09cded978a 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 b765f28bae..c02bc0a5bc 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 85ad597016..84e6666e67 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 c2c925b88f..f8fc4bc773 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 d73dd56879..8696356f82 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 67a2374861..5e7604d882 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 e7e3e45201..11378528f5 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 2906a154d5..b9fdcba8eb 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 b402f5de4b..b68248fef4 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 1b5df6a77d..850ef57359 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 9990d39fc7..11dd52502c 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 a7f992cf17..b2f812efa4 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 bb25acdc76..c6457a1df7 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 0ea614ba59..fd9c897844 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 624f7b66ba..f1e5ee2a5f 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 101d683733..992b08b77f 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 ac251e7a8e..85a98a8cff 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 2754b02909..6670575bcc 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 b46d5e6503..63f5af42df 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 465f30c8e7..932bd80d60 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 b13dad2e67..942aeb84f4 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 03f1f7c24a..addaf8a18e 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 6d389f6e2c..f66999a042 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 eb75cbef86..b863d98e7b 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 b23a76930d..0644eba348 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 488de41021..a98086627a 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 026e514242..efb14a4bd7 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 2dae3e69e0..ea811ce856 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 64d989c676..8c1b441e53 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 7332cd0d1e..dc77425a34 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 a6a3502ae7..1cb170f15d 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 4ec82f12b1..bdb30f44c0 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 4213e5287a..61bcbbb4f2 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 1b76d55ba9..08c3ee4509 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 8bcfe3dbaa..5cff0606ab 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 98ff540adb..c88cd37ad7 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 eba0ba978d..266e3bc146 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 7bb4f45f40..a9653ef349 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 8a9ecb7f23..cfb4059cf7 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 8bae1bec68..dd93b069a0 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 90d90f8eb4..eb0d04f2ec 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 c73555bdb6..276d3ffe1a 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 81ae4979cc..610b49f944 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 d54daf980b..512e966cd7 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 79f9b5f070..32f271f469 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 66a0b6dff8..f32a5ca447 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 e7ff068059..d79d9dbda3 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 552193bce9..88d28a417c 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 ae1bcd01b7..94385cbe8e 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 1bd13b5c41..9ad3677450 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 b0c1fcb176..67e4e4f1c0 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 cca7e2aa6f..1e4a75baf6 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 2ebed9d6b5..f3410ced2f 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 4a7f6834a8..e33d336fcb 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 92cc7026ab..6bbdc28b27 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 af47ff7cdf..01eff90ff3 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 b4aa143ca7..4171c28001 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 122c033c2a..3b80026def 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 5291f6b93e..f7a9e0de6e 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 d3a07140dc..b8112d8bee 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 f276b998c3..c0c263a7fb 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 47af01accb..e01b40af4c 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 6397c41890..208e824ef7 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 781ec9b163..10cc568589 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 c2da33dd57..d41ef88c78 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 06346d8587..021c3c46ee 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 9d5a8651c3..47dbd5828d 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 cf7485f405..065a197449 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 e360e61705..64f5dc5515 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 a1c14206a4..0ee695b516 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 1fd7b60fe3..3b521ab30e 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 0f0bfc058d..2a4e562076 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 49a6d85406..fe3d7ae16d 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 b13a9b8416..24a69433c0 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 f3603c209f..6a87b7f9a2 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 23bcf9d1aa..b09c9a7010 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 0796c82838..85939f1733 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 90984977de..a385691f78 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 b3161c8502..e1abb0a838 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 43084f97e7..c4202338a2 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 87e214e67c..f917bfb327 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 cafc69ecdb..28afb14ebc 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 69e53ebe84..5f806d587c 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 8dd944de99..c52c041d0a 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 bfb906db3c..e33fcfee04 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 a5bbadf8c3..0dca7c05ca 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 0240a3e9e8..98e81d50d4 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 55a82720e7..7ea524d738 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 86a793f6e7..8ab2d7f3ee 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 5c0fdd2b87..0e00253ed6 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 baffe5c2b8..20a5d52550 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 207e46e14d..12c5d27774 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 e7d861a044..a4613dfea2 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 e6cb2979b9..3240002e6b 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 bff5b2dc45..6d70e47d87 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 85c88d73d0..8786db507f 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 b03e3f8d51..ff091fc211 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 d8bdf90a5c..5ca7a3bf46 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 bfda041524..b20c2d4073 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 a8ed5476b8..61a7fdeb69 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 3a81e78344..6b14c25b99 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 a0ab1aa772..e71159fc80 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 c8a81e1e08..2e92983ee6 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 97aa0fc19e..cc872c9b13 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 6d331530f8..407738360f 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 fc139c27c8..afc5d5fd96 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 c9049cb127..070233aa20 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 d08e939551..ab344bd8d7 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 242f0956f6..6a8b7e6218 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 328b929a28..3e6dfa93b0 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 64815f1b40..516af2888f 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 9fe059aa58..98d389795a 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 95485d7369..550abed3d9 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 fce83e9006..df83e72ff7 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 4d8afd4fa8..989736b440 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 04a177138b..ae1687784d 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 f1cbaf23fb..e70f27ca94 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 37ee00a609..0bc1165629 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 6fc746cc5c..451415ba6a 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 1245b78b2b..16e2ad222a 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 a087e75af9..8ad1bc4c6c 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 93ca42259b..e3a5fad1f6 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 4f6d3778ea..83b154723e 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 fcb859a005..3340eca0f6 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 e3ede2befe..850eeb7fa7 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 fa4f5e0c52..bad63610fd 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 f29482c4ba..48a74bbdb9 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 d5870f707a..e5d5e15426 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 01a3c13618..2aeba64d15 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 b5b15f6848..823dd5694f 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 84d2c7504a..1af26f4a9e 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 18daff2096..da4f286ed7 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 f8265353fe..cf1b1d9be3 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 ac540a6f2a..a019d32a09 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 29d4ca0d6e..b31428273e 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 8dc7eb1093..bd4fc6dfdb 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 96edb2fc16..4db0f2e013 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 42b51f886c..d91d61f135 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 96174ba832..2d5f5ac8e7 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 f5616a9901..140c06265d 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 36d605cc7a..92c7f0129f 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 09f115641e..d789267377 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 84ca4b7d1e..c66448be3c 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 ecc9b6a0e1..61b34d24f2 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 c12432a672..01613743eb 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 2f60ff8099..2c6ed6de5e 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 d47fa201cb..8e59e6f433 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 9f3d43c7c6..73c7cf6901 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 a3743cd44a..99caef76d9 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 bd61cb95fe..acd666b7cd 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 e6ac07f1dd..bb647090fe 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 6a0f1c57cc..e34b94e1d9 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 994feef063..17866805c6 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 05123f07ca..c3837c645a 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 bc5dd004cf..a3924a4875 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 0056d753c5..7eed7a3563 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 9953cba8eb..c6f4c5505e 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 3c8a5acc7c..309412e827 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 10abd26cbb..7c0d8c53c3 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 ab95b1617d..dcc4852b31 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 0cdc43120c..ad06e6d865 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 86b9f72b80..6c4a3acb8e 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 b88e910bfe..e87b6d36dd 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 1b84f37a81..20aa398e34 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 f247a625a9..7cf9c77d1a 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 e81e1c9b0e..b5e95a1255 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 3a7e112d18..fe818dccef 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 c1db3f6f9d..a2690aef07 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 193d0f66f5..125dfae070 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 62ac6f1f76..e827de3708 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 775977e52e..4233a01dbc 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 4bb02168d2..d5f1891137 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 b842c0f728..2031886c2f 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 450c1f8866..30cdcff94d 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 69e77dcad7..3d1019e8fd 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 889469c55b..958db159c3 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 bd19b2bb80..2ef773f9c1 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 7e1512276a..e81b4021e5 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 4130ba6b34..e25aa41073 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 82e8a861be..20c345828f 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 164efbec50..9aa4646437 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 b2977f8733..e6c207dcdf 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 77d00cee76..a1a3979444 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 a1b698c7fd..432a18d6c3 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 ac41f7ee0c..b15d3dde76 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 34e34e0ec8..c676368f25 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 52c2017a3a..d5fe4e0577 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 236cc9aeb7..3f87b34759 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 e155f3ed0c..a822baa25c 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 27e37032a7..e6d78c6dbf 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 90ebca05d8..fb8e3eb420 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 6edff1c5a1..8173432a62 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 d5487f98e5..f3225f7302 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 83dff8b30a..a8ddcae8f6 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 1bb09f7e97..c9cd95376e 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 681e1b9c0c..5c54e51490 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 48d94f1081..d215fe6782 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 36be7b9fb4..870859aede 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 7c56dba3f5..2a88088a1d 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 c1bc71f50a..e6ecdfcce7 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 73573f66a4..46e1954602 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 b23f46a9e8..8217b9725b 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 4e37ccc36a..0a6606005a 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 01222f9696..5b79cc2e3d 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 a8f174bdc8..64edac17c9 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 f43881bf63..c9b3030963 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 aebebec5db..08b736a843 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 4920533bbe..c8ef01f816 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 ef7d4b38a5..964dab43fa 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 eac2818913..58327177d1 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 cda399c45b..4e222cca20 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 582bd2525f..08948074ef 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 1cf7a375f7..8ff25e90f9 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 f8d15d859b..086f82d097 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 a188730b44..3ca92022f5 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 76b3d930d6..914aaa9019 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 4a5743401a..a5518deb62 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 ee2a34139d..bc4216b2ef 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 b481f61a11..23b2afd995 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 ad44245127..8e6fdd9cf9 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 cb2a3522b3..ff664aa608 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 6e1fcd0014..314fd4d4d8 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 49588abeee..3d8bb17b34 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 6a53f9cbaa..a443e91e33 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 4ccf91021c..ad6e089de1 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 b040250632..a5b3908d74 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 bd7c5bb83f..4bbbdebb50 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 0693e3fb83..2590b44f46 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 284e4d814f..e0e2da4667 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 8583f2228f..919a926cae 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 99f8a32705..6a7ed07464 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 b655163a21..b4aacddeb6 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 55a45f193c..38cd7ec00e 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 18107831a4..58ef9d37b8 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 919d00f879..c27a637e50 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 95b74412d4..c2471e02a4 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 104500998a..d3a2719b17 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 01887b1ab3..ed44b25ab9 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 707f1c5f76..f355db6d46 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 10c03a9971..7805bac63f 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 1edf5f1f37..74e1738ec1 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 743150d0de..df0ac42a2d 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 52252c245e..11bf8df944 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 2b5f8a9c1e..42cd8fea8a 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 85388c759b..c740b76fea 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 3c601fcb15..638eaace7c 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 b09b4eebc7..06cb69ee1f 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 77d69d57be..8ef2f86791 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 5f6167ce17..31760e04f5 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 f11f46f205..b8341f053f 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 3e866c593f..2374c8a762 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 fdae3e344c..8b0e8f619d 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 66c3439127..489ef03f7f 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 d423c1cb7e..5965595391 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 aced860b69..292303a597 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 523c41fd88..83a2a03f81 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 17b8f4d346..78a8117cd3 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 9d2e39b3c2..ffdb2f829c 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 a10a26b499..70f7967451 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 8e5e5cc468..37e757f094 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 38193e6b01..2f787db990 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 f47177c72b..783d4dfad5 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 3e49841b45..e85e545139 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 0c6a75b026..994a1b480d 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 d1431a226f..3be7a47977 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 6dfdb6e7d0..7edc463ed9 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 74bb6e2efa..259ae84bec 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 b2aa647efa..11f743e118 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 d4c148b543..4901ba278d 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 d30a34f207..1f7271b2d0 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 8769fdd7a1..47b843948d 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 d873f03b76..7ffacb317f 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 8a4f568edc..ad40ae38d8 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 26205e7049..e06a7e12b9 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 94610ca31b..8319f3df20 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 866037ac40..9e4e8762fc 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 704d219ef0..7c6b556261 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 6b0e7e5efc..317ee78ec4 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 7642307578..9c75b0c287 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 ec2741c1f7..1c8d386080 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 71acaa2698..0e0519810e 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 a4b22f591f..081d9018b5 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 cf17ade170..0ccb4978cd 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 3a05191e09..14f21b1868 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 1ac032298b..bc580beb89 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 4776424375..369d7c4336 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 379517eaa5..500c08fb30 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 56b74dd43f..2432445a2a 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 f4437aa829..67c708cb30 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 746feb68b0..2994902fec 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 3ffa0fcbb4..199aa56082 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 d5d323e955..7feec64ccf 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 6a9beb2ffc..078f4f7777 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 ea50c9843e..a63b52e9a5 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 ad8bc95baa..876ec45c52 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 e4de16dddc..69ecea8f9e 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 f06a62e8e5..0c26c35a64 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 18983291bd..8d6b4654b4 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 6df25fe7e3..2329664f5e 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 8f61dd41de..b9b9186781 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 90459d388c..7bb8a691d4 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 034f8f694a..db5feed890 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 4278813f78..04fb406dad 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 06929e5e65..52addf7ea0 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 15ae5a8f88..6b09411464 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 1234ddf11b..99ab028218 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 042148f528..f57a9d09bd 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 f3309181f5..77ecef98bb 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 1f22c73bf6..c541b68db5 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 321ce6c74b..317ffc2a88 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 8fee303a09..dbd9346f43 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 e0ce6bbb49..0cf8c0ec76 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 4936e59979..c410ebe248 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 2928dc10b7..d29445460f 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 d47a53c7fc..3c7c9e288b 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 d1cb9f651c..f52684a82e 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 076d74fcc5..a32b2d1957 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 5e64ae9d86..3df020a47a 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 12869d7520..6d0ce74986 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 245b38e464..53d7851b4a 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 a766bd1711..9fe572ed4b 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 096199069c..5ae2db5c58 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 b10d66d9e2..a3d6f8f90f 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 fff73997e2..c6610fe1fa 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 c9376e271c..4b0460c282 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 788e11a83a..85604efbb7 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 963ed011f4..eb105f942b 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 1f335de2ec..494b3a9869 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 7f25a58790..c702ed508c 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 27ef760154..847416192b 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 ddb0c8f673..393acde6e8 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 4348764638..db998b1a8a 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 834739b6a3..f9cd2253d5 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 a34c6d1fa0..d53a1c2c6b 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 eec5aaaee8..1bdc7b9d43 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 ae4d181cd4..bb98c8a590 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 d28609a12d..4127f5786b 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 c259b22384..0c0d278300 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 58d8b03348..f3a29c02b5 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 80acd48618..61566330b5 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 361c70d8fa..06ee6d1d6f 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 b45a68c0e0..2796d6eef1 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 d1a5dd47c7..499c7e3ad7 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 4f389274ec..96b5568233 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 c718ab15c7..f62d0f5152 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 dc2af30695..5bae58be0b 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 542a42711a..f54e331ace 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 e16aed8c17..64715fca7c 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 3835764a35..d300de5b82 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 fabafc7c59..d73f83c9d9 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 71b10fbc48..6229de9a2c 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 297bebb432..c20fba126a 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 a3a528ef68..f8bf6bd4f3 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 331ee6d453..d54c2df29f 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 506520e6a4..19fc43b822 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 abd0293bb9..5ca38f6190 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 add5deae28..e28447457a 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 50fd51333e..da911640cb 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 e8e6640b01..7e48493f3e 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 ae174a1f7d..d2b1497edd 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 bec77b3de3..4b745beac2 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 028d4451a5..3ee5676d79 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 5dd820a171..882c15fbd8 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 9579c7c955..32870bd3fd 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 a7e64531f2..4b7fb9e372 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 ee307402d4..4fbb7545de 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 70a5ac11b1..13b92e5b30 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 dd983e2d8d..ac5c03b1cc 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 75dd6e45bf..8f36ba72e0 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 5bf13fcee1..888de93c01 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 30a978122b..b7f33c72fb 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 699265c146..6c668347f7 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 6640b293c0..03d1ecd634 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 5cb8b5c0a7..1fd63a2db4 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 3adad56bd6..a8041d5754 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 9a6d9aaa0a..b77e71f70c 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 2d4296f1a4..659313a212 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 b7aa010c4a..f25c84c826 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 a86ab948b8..bddf2a9eff 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 afdf334f38..99e618870f 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 ced0432e2c..142041b78b 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 f5a78447b2..f8d9bb0230 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 7daa9ca8fd..12d3a821d6 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 1329fd95dd..dbcb0c9a01 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 0f59a533d6..d9e34bf6ad 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 d6ecfc5364..3dd76fdeba 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 94673d630e..d479918dde 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 15acdb8528..8a24250b97 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 0e175aad77..46fa28daba 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 c87cf72d36..85a9b39c01 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 3b234e764a..e58f919d2f 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 c0704cc602..b1d9a2a33e 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 aee352e7cb..3b59254089 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 b432f35255..13bed7b191 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 f70f4af87b..0bba9ebbc1 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 df8ab5d48b..0684923ce5 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 aba240fa43..35755d2913 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 1300861ed1..c70e86f701 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 8400c9d750..1a13d61ed9 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 7d3772181b..f5a21486c1 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 40ff862576..c32cbc89ec 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 cc5af75763..e8a01d24ab 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 ff9e87e9ea..bddae377db 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 980a9dd66d..4d375ecf19 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 01368ead7d..c7dfcadff4 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 be28411898..49b13876bc 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 3b99523df7..0d803537f9 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 2263e95fb7..e4d2547b4a 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 7c7d96164a..d8afe277dc 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 53effeed2f..410a102e5a 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 e16955e5e0..33a2909ca2 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 9441e80729..67b529ede2 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 c744961a51..bfeaacf53a 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 7a9b7098d1..9a38df1c92 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 7577d94d41..b68e07bc0d 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 5ce8e43894..e1440970e8 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 9ed398b330..aca7ed9832 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 cb7c709d7d..e894a5735e 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 9ae9bcfc59..e9f24c48af 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 65fe1474ac..0e28d5d60d 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 047d6531ae..98000fb6f6 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 34eeb936d4..bc6c656f05 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 98f3657a62..34c22da61c 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 8e13fb1573..ed21bbb24c 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 767c6b768d..e23f8e715e 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 a750c543b2..36cb414275 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 93dff07656..68037c3c15 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 8bf9a5ca02..ad74e2b089 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 e3d337ab71..2678434f3a 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 8bbf4413ca..d40c013b9a 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 a0568e3d2a..9bd1ea4238 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 bece63255e..6dba72b6b6 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 3e1dcb5b30..a071cebbc3 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 03a359a90e..c0b51d65c0 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 a46e997183..3d4990601c 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 43a9597981..525b20a05d 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 1577f8889e..37f1a26d7b 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 9529d533b1..baae170ef7 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 505bef0681..7c42fefb3c 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 f81e8db066..1bd92584a5 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 70c370bced..fc40c0434e 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 3f0d94434e..92f57ad6d4 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 005187a08d..ff0674fc2c 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 f7cca9e0d2..9dea944622 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 3e430363da..cca84cec77 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 d6ddb57435..d6d4aad725 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 6e2ae34b4f..224991ea15 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 b7be5c8f67..f8ae080c7a 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 77ac3ab0e1..cbc09449e6 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 fd6312a5d7..dd7fcbb18f 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 bccdc8cdf6..504f3f54be 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 2249d4116b..22c996ac7d 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 bf019d08f0..2fd7b78ec2 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 e6116545d0..1bcec55b2d 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 7c5786f069..b7a957cf73 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 2d6bc2d794..4e51aa0e32 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 42f8341b46..d31ecad008 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 9cc43ddbcd..df08eae7a8 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 010651cd55..b949bb190d 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 aa0a93f17c..a3410c0b57 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 dd19b5177f..6a98965577 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 04d0ae7ae8..238f0151e1 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 b7cf2a7b81..b1925cbf32 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 0c75e806e0..3efbf11550 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 2b38e10861..7720162731 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 be4108a742..27c18b4907 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 b57522c2f1..10ce438159 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 e8bbc0df75..6a74849f5f 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 ca3616b801..1d4f53551e 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 851abe5c7b..82deb91147 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 f434c053cf..bf6873c72c 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 341ac3c934..d0fc24e828 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 b38853051c..642684d78f 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 55f6e87fe8..e0bf8cd9fa 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 fcd5a727d3..24e2ec8be3 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 74243b0af5..316b98003d 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 0eff251627..fc19b62878 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 471c40a72e..d829677d2c 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 cd802a870c..14e78e3a4a 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 c18365eb2d..af32c4e9ec 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 9e5a842272..b5a4186747 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 16bf839aef..c9d5c43ba8 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 811b0a8235..88a6ee47d1 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 5fd986aa46..ba4cb6a668 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 bff5afa00e..0da14e1fb5 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 a6f0ad3b95..5293754093 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 451bc73bc9..ad697f36d2 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 06595ddaa6..9e94df4a3b 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 c4cfe115cc..37c9c9693f 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 c6a184c44f..be51491afb 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 f7356c6484..64ea777d1f 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 68b3b6988e..c19ade3df9 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 5f2682ae5a..a31b6c0344 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 6fb888a15e..75abe4d2cf 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 a97630c514..6fcbbd33f2 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 bc18eddc9d..0c53a6d492 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 ba9d3a11e0..883e0bf282 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 5d5f30bcb7..7a76970c7a 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 4e4e288ad5..b7aac1dbeb 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 070eda0b06..46a3cf54c2 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 27f722dfab..7d4ccd5fa0 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 59bfb9b43c..3366268866 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 3e38225cca..d1273b4116 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 98d40e28e9..e1c4b26174 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 ca8f3a4a23..3be8c2a3d6 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 637303f099..c03173797f 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 2db638a5c2..22eb9c1b1b 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 d13a13eaea..8645afa659 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 e86f6c33dd..f0b666634f 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 151dc1ca66..9d9793b60a 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 7676865f28..7ad312147c 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 7998dc4102..88e936d5f7 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 cf33be475d..045ac3ba55 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 1ae3f0eebf..0ed24308b1 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 48a938c040..61667eb70c 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 dd6d06cb9e..7e67dcf199 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 7a0dd9b23c..9638b64710 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 d0540f20b0..91c8caf5c4 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 5ccec1188e..09446f5211 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 e9493b5ead..be8818a05b 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 fcff31c843..8dfe843a85 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 0f1d5b2454..4d237bd9ed 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 d43c1ce5c5..f165aeef4f 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 bd323dbfb7..d4a01c08dd 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 0f13d85cef..02f1ed4140 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 5beedb47ac..df1d240a06 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 b3ffa200ba..21a99c0688 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 d992198568..371f714e16 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 bc8d99a2cd..ae7d617d33 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 178ed0e434..aac49bf619 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 9d36455d70..519ce60b45 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 322d9129a4..4da74c572c 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 f15bb115aa..12bbda069f 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 8cf05a60e1..0b4203bf11 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 698ddf21bc..ab175c5fcc 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 eeb505292c..b5c04db8aa 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 f08a1c67d4..622871c72b 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 9eb7f20514..f4918ed04c 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 51a5965fd9..8f29d303c7 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 81b63245f4..953b8c8090 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 5e238709c9..772001c6e5 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 e28a152eb8..63327ec5ee 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 d6fe2d9b96..4a330a8e56 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 5ab3a80d00..a4dd86edb2 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 738c9add05..9c1f8c1efa 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 e37abb0a65..de22b88eec 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 0e3cc1a928..434eac4d3b 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 a7cac25817..d3fca742c8 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 63cda146b8..233e5a382d 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 5a977fae75..90f49f924e 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 67af16f00f..6fa582620c 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 ee735b2caa..fcc4e67b8f 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 9659bd6458..2c8ee2fa06 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 0862e6e3fa..30ae031ac5 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 b73a5d287f..eb53388218 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 33c6ce24db..ac4017e49c 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 f6af38e7c3..1a30abd2a2 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 cdf03aea86..1563e8121e 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 31da156b90..b5707e9999 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 64650e3cc7..e94c213f60 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 81fc8598d5..ed5957fd08 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 add0a2546b..8fea0043c5 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 63e7abe3a0..5f8fac0956 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 12bc67774f..0d8e7a4d1e 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 821d28bbfb..0db093496d 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 61f02644e3..6104e9e082 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 fca38affb0..fcc31a67a8 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 8d61b28697..3258d58b44 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 df1034d3b9..06ea6bf31c 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 e251c1c239..5a1525525d 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 35879eea14..7d1bf34a76 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 36e2eaca22..e7de54d548 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 776d4925c6..8399f8d4d9 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 d9942d3712..5238e8bf96 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 98a4b3165a..81b9b0ed25 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 b7e1912586..19a73b893c 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 038df3da46..a684d71c9b 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 18644ad453..12944173d9 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 3718861ff0..522f7a68d7 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 0a4fbd9f64..af1a969c22 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 500e994d9f..e937af63db 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 ad96a0d640..b5a1dc3c3c 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 1701563814..e393e838a2 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 c09060aafa..3611bcbb00 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 8d7727daba..714744cedf 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 371d7c1d9c..fe6c1eeecd 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 8da292bec3..3d39003072 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 374805c500..8299a19fb9 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 d80aa190e8..d37c6b92ea 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 0ea9535ccc..ee0a5d1b04 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 cc65c032c6..60631a5436 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 b7a08f91a8..1bacf3d321 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 559ddef094..7df33156b3 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 78cca670d7..c3c2eb5f79 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 12b71a391d..62a7debfad 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 dcfe12d291..f638cb9cfa 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 a80dc6c0c2..43bf83eac8 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 5bca2245a3..e7b6cc2450 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 5e3e563098..ee81d325ef 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 c33ee72744..86c48a7456 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 b3bafaa572..a58368b3a9 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 7343102795..0d7096c4aa 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 6b27f4b25b..4dbdc3379e 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 2e374cfbc3..1a894769a7 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 fc3d8a8be2..3fc1c396eb 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 2aa65fc5a5..568b490dfa 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 ecc497a05a..b9ecd50592 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 03b8ceec62..55d6ef9c07 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 90d525c677..afd9f2dd4a 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 a90f16bc86..44116d3c7e 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 590593fc45..50ee688cb8 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 d5ae9bc1d1..2d306586d9 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 9b07a8b7a1..9f28b96c24 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 ffbc672c34..652ad87f69 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 94a986346a..cdf11fcc4a 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 d2c79a828e..d5bc056870 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 299ba08b93..bda09393c0 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 a69335a229..8c53d7f9d1 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 089fd09e3e..e1b0bc2481 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 a27adc9b60..fe21825bfd 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 1e2b6af85f..287fce8741 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 b067d239d8..f4374f1acb 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 b221e6c7b0..0c333537fc 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 8a6145cce9..496ac51df7 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 1d5c8857f7..0a17c9ae91 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 629202c442..e8c3619253 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 82b35d8e1b..e8a41f1cc3 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 44bb5d8cff..1cec9bb700 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 fafcb89823..898fa40304 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 56bb4711cf..186f67a486 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 6a5ace0cd7..7a35e58ad5 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 181dab18a2..5e36f292c3 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 7dafede58d..13d451f361 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 dcd127c460..9c5e29be3a 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 f443d23ea6..206cc9e820 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 faa463cbac..293cd13167 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 2f6edc3b8c..d9eb60a8a7 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 cafccc43fd..bce9231362 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 490ec85d1d..5aba37139e 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 299d220b0c..2d37efa773 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 f776f9c754..00ebc44be0 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 8650d6bd70..0bcdafef9f 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 6c465501c4..cbddf13414 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 cf27f05ed4..e6134aa74d 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 2427519f28..0f6e5ac701 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 e1a92033db..979a1dc2c5 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 df5769fc33..3988f871dc 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 8bd6601b50..7a1a0ef13e 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 32c3e88f54..779f67d062 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 13804d907a..0feffc2fe2 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 6ef13c579f..55d81f5685 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 2cc799c3f7..642f8d7964 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 7228c63f02..34aaaf182b 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 b183611360..95c580b2ec 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 7155afd44b..2b52b29eed 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 86598d8f30..c839910fc4 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 698aac63c3..696b34d64d 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 b3613f922b..177bfacffd 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 4e07dd080b..64273a7da0 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 ab5fc8808f..e8b3693482 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 b3ae0d7f91..346e94cbf7 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 0ae34893cf..26827fd286 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 9d20095768..b7d91074e5 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 2375ab0d0b..4b76eb1127 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 83625a5f9d..5d05dc870f 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 df84c91b7f..67b41e7106 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 d3c3337d71..5e2ece7850 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 fa0f870fa9..91099fdefb 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 a1583bad24..30ef00554d 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 78c23ca29c..a4b1ab1d43 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 b6be8fd42b..062884e1b7 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 6168e316c2..96c12443fe 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 b2638ede3d..677168dce7 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 a7035f3604..6d579d0ff4 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 7a5d73d966..4abdc675eb 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 fcff75bf42..621b71f37e 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 3d516023c2..835a9376f3 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 c1eafc5438..cc23a075d4 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 536b41a2e0..60b87ffafd 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 6ba2f36717..6799f74b71 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 3afb9f8e2e..81ad7acb8a 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 7105efecce..4b83f63cb1 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 ef98cb2a69..79b18fec56 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 457ed8134a..c9e6132361 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 0be27c1826..43290f804d 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 76b58df325..58aeb2fd7f 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 903d5b699a..ce86ceb729 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 fe853cad68..c04b9a77c4 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 c051b2b1c6..f61e920ed9 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 7202b0ed66..4676a45b5f 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 6c64fb3e57..cc15d028fe 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 8c976d1eeb..8ea6db5b62 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 8f90079100..8c0f49c20f 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 7edcce5150..8690728b48 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 953015f424..f3989a0975 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 69eec87b16..377a98bc48 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 cf59411c8f..d444ff6d29 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 48c187d1c8..9e72cf2dae 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 3ed5a45d21..65c7dad9f3 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 068f18b557..042c486b3f 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 1ce08c4312..72649cd1eb 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 cff1bfb466..ac9ad6107a 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 77c25dcd98..d91ec2b05c 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 30a36598af..b3f4852161 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 826ea7bf81..73334d4c93 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 898e28e86e..a33b45790d 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 a22e6a8c35..3315824216 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 58ca231aa3..552ff8343a 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 c9e4f49620..6b26ceb27c 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 79cfa75db8..475ca77479 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 8c1cc0bb63..51f790e1e8 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 c02b24e37f..d2403c8342 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 af3535fd62..7772380479 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 fecdea57a8..0478954ad4 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 418192ac9e..46c056e2a2 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 409bd48c68..886969d583 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 34a2d9df6b..1dbdf10a19 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 7cb736fbc6..5b2181b255 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 17c0cf8219..4eced89b50 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 5a57369cd4..dc2438db5b 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 00df81d53e..48d99c06ca 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 22b3bdbc3d..27ac5c52ee 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 8e60f15fd6..e344e72399 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 f6b9ec493b..780500b025 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 dd225c652a..d528742f18 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 65c541d8cf..0afdc09a05 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 3d4f6e8481..bcd2f117b7 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 594357e7ec..542177ae6f 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 7f335ecd35..b21eb0a539 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 5ce4cd060a..aa33e8c290 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 e96035c1d3..9cf58784f5 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 5475c2f965..6e3f435c2d 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 9e1c2034fb..6774e0ecac 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 718ab28047..7b393db6ca 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 043e435ea1..6527e2bc42 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 fe5fad51cf..dfea989d15 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 6fd2944eac..4f2ce1ac24 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 a07b66dd3d..7cb93adbf2 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 60f28f340f..0a3fcd0984 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 f79aa53cb7..f821c48b36 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 606bf0d30b..9eaac2df2c 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 f5a621466a..b44cc185ff 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 3ae3eb0dd5..4c7ecee007 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 fcd6508489..26888cc541 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 8587de1d08..1fdc950518 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 787e758e61..ee5dc4b6b0 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 b7388de18e..ebd014a7d9 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 fe7ecaf9d6..709bafb3f6 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 a1c0d27b38..410def6840 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 bd93880dbe..c21c3ef65c 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 8b9167cfd9..962dead6e5 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 5c7f9a3ab5..b8ca79b758 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 9ae604984b..7250e84e26 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 bfb13ee73e..5954b3447f 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 2b141b1008..2715fc8a1d 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 ff463f936e..cc14bfc8ca 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 199a58b87e..85459464b3 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 8abfae44cf..bb8fc6c9cf 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 5aff306d2e..896762ee43 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 9ad1db892c..c7b5c86014 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 e6e89aacf5..45ed8380e2 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 ea2c8e30fc..0c3d944f64 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 3d35f644d5..be61c1abfc 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 39d0752b0f..afc8d4e213 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 f1ab1b0f0b..48e5eddd2c 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 95a4bb5df0..731b7e8bec 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 118042597c..7550c9ce69 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 1be3a02752..fa34ad44fc 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 ea2891243c..50cb0da1e9 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 a6761f651e..1e357c5721 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 9a49223e00..3865adceec 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 173c02d8bf..cb99d2c2ea 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 65317e43d4..00a0db8a50 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 0603b2fd88..1874d9bf6c 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 585aef435b..4410ebea72 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 d91484e228..02486fc968 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 c5adc063af..9a5a5beef0 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 f0833e84cc..1dbf6ba433 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 c14b378d33..e5512a615f 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 922b4cceea..32bb162207 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 08/13] 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 0e6cc34b11..6e77e23f74 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 09/13] 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 17a7e0bf3c..be14eb47b6 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 10/13] 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 6e77e23f74..c52dc6f28b 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 11/13] 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 c52dc6f28b..b1c5157140 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 12/13] 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 f430e16ef0..09bd62c608 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 c599a05e59..68e9739741 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 f2e8a69c9e..a1f43f43d4 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 786b3d3f7f..40706f818b 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 e31afd42c8..1e8861f863 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 55d2c48ba4..366dbb823c 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 3ad453512b..79e6160b43 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 2541825624..95f6e38447 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 497f922481..01947458fb 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 67d335f912..8053c7f92a 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 ea0ed54473..ef3d8c1775 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 67dd4298a9..c507d745e7 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 68bcfdccb2..7da2048527 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 1a274ef54f..e93a224b21 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 4073bc1c8c..b56f1c7ba7 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 8aca04048a..9b5bde7710 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 cb39e0da3a..9c79789c8f 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 88e91e2772..a25b5e5960 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 84d7a29672..a494e1583e 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 6a6b81be32..ceac30bb2c 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 06f11b12c3..4e322a0b86 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 e5bda439de..cc2297e949 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 a5fb27bf85..2da0fef96a 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 e2941661fb..2023b8759f 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 27d53a7c18..f4b8dc5c3d 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 2d121d613f..9f2e18b0a7 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 13dad85599..f3399f1c4e 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 7ae636ca08..3d30d02fa5 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 cedd86dfd8..80a37eb10c 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 36e501ea48..9bb5b7c319 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 a144cb7c44..31847b0cd8 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 6cb4ed5e2b..95c0f4c1aa 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 a3ffc4955a..bd79efe1e3 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 fcd94f48c1..c533035aef 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 14b705eb08..8e8c4db08e 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 1f7ed89d96..c0fc71c4cc 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 15430d6a60..f0321b6e48 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 0c799b67ea..0a87f27bfb 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 d2d2d65c90..884b0f9429 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 584d0cf982..3d66849970 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 036515915d..5f762d1004 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 50a11f53fb..e0c5889440 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 22456c1fd4..896bef3e9a 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 786fd6bbe4..baecd973d2 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 30ae9edefc..d7675190a8 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 7f2e6bc736..fbdf21ab1c 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 caa931091b..4fe03e7949 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 76f28b63bf..b1a7ef77bc 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 0b9f9e8463..2a68169fdf 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 3e259b1dda..e88d506c0e 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 c3f97391db..1a940a4399 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 afb75c50f8..0abb9a317d 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 22982a2b8d..a577e5cdc8 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 feb064efa4..6bf0b9a5b0 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 ddba9652a2..c7b1b38985 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 6abcd12864..0a2c962d17 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 8d307ea886..8eed7f5440 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 df28f9bdd7..9f93523b20 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 c9ada6b141..4e0c1536b7 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 d2b32dd022..f623f06e79 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 82472d935d..5ab322847c 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 8cebbeb893..2441f2602b 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 0e9d217060..3b1d217330 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 bb2b8043ab..67860b3b91 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 bf4eedd7cf..1f403fd18b 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 0630af41f2..2c31b91c28 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 b8de6deab6..86ec59a076 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 f56b9663f8..23e30bc70e 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 f6eb24e9ab..c619742b74 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 85ba6a57c0..3ff0b6f3b7 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 a2cd1c001b..de5fc9cfb6 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 60df4e0fb8..2fdb3ccf35 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 4476e4f832..cdf18b231b 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 1e7f65d101..7f93f28caf 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 5b4fcfcadd..3394a9ed4f 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 d06e2ed601..6e52a1f229 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 dc82b03450..cfd8b01348 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 528b470e5d..e9bfd99448 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 5b6f63eca4..7062c665b2 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 925324e841..f2f08e208b 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 520e868aea..ec393ac309 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 4f07c0ef1c..ed4dfbe95e 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 bf311da7fc..73db1b32c6 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 704ed38acc..d93001eafd 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 6ce63a09a9..002de2df01 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 ea33805dca..54003b93fd 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 f0ce21797b..b4368bc3d0 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 b6ff262d9e..4cae084a17 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 7542d00534..c44e5deca6 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 fc2db6fa29..a39e69dd43 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 63fcc9239d..2d741c1e55 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 9b3f3c3c37..6d971899a5 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 9fadea1154..06a64c749b 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 214e36101d..4e03a91848 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 1bb7824db0..99198eafea 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 d5f67605ab..251f0ac170 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 dc2e9d5141..6e9c79da1f 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 d2daefaf46..f181d9818a 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 3f37fcf3eb..7d289e4ee1 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 e78d38ab0f..ec4ae7301a 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 c48ee2b653..4b5b3e6525 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 af64dabe2c..d8002012b7 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 cfc1d06e56..8a231136b8 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 bb026753b1..e7aceb36c1 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 4c0f263c54..cf7d79faa7 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 b065c1c20f..4cb2fd6231 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 36be78300d..f9bb848fac 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 15d04ae4a5..8bf1ab3ab3 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 b131f632a1..1cd1afdd81 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 c871d3bf67..f4f2b589a1 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 acf8c89461..1cca5335ef 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 6113cae12f..6697b378f5 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 3462627862..5ae1191e17 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 9a40ab2b2d..40086aae10 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 2793fd9260..140a8319ee 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 af70a3f3ef..fd696174e0 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 ad68b42989..02ebea341a 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 b3efe43f0f..b0fb2d1c87 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 6a97746c6d..303fdbf483 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 5e340b4af1..5f7acd2ef3 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 c68f7af67b..79e6a3b9be 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 1c21f0eaac..94ce4cfa15 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 f1049e0052..fd7a47d7fa 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 bd40b59b61..79c9d754e8 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 e66a0f6881..e86801fd73 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 fbcf5bd579..477be1780e 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 8cd6c75a61..cd14aa0b44 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 6e1a5f7e5e..e8c172e6d6 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 8e81170d75..33efb77de5 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 f9fee8ecc6..ef3ea0d86b 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 eb190ec452..99bdc2902e 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 0973dbee46..a28507cd99 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 a9d496a396..0c7f226996 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 13b6be959d..763aaf5a0b 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 10d9c847c5..8f26ac7783 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 17f333432a..3b83e5f735 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 b784564a14..fff60b407c 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 02ce36bb2f..505829d541 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 ec5663ba13..e7fcae3a0f 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 229a581dc0..58e04ef9ca 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 6c5b165a48..250fcaf0c6 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 af0516eb69..bdde585fbf 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 b0f59bbfff..312c4e188f 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 38e709f8ac..2c65371021 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 4b68e32801..130c7cba86 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 f195f1b521..a2a74b5040 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 448e86a021..0e142dc3ce 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 50e9b028c4..1d946ce0a7 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 0a8436622d..259927646b 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 22d9891c5d..164b280ed3 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 d18928467c..2d7716eb3c 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 f394878725..57afb896c1 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 8be4fb22e1..e8679c69bc 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 b982990c37..226e4f26cd 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 bbc3d0443d..ee546d293b 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 8d4a3ebccd..ea0d9302de 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 552f178732..daf5f83647 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 ae1eda1204..2b0a89f04f 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 6c5aeb9e53..5bef3aa879 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 46aabdf274..ec754c4f54 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 5fd9b142df..0545065811 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 9782657198..8a8a108314 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 dec098d498..c76f421898 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 5c9da3b4d4..404248f5b5 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 451ebd16bb..685aa12f45 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 e19435a481..cfb415c013 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 b9e5468947..13302daba3 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 4bbaf0501b..f28ab8710d 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 fdfcd5c7af..46cc1c6549 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 f7635ef499..ec1fbf796e 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 1113302e74..47e3136167 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 b52e2046a2..13053f50f6 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 8fc20082d7..e430c9cb71 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 b1c1404035..7c6efe6567 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 9d24111ec6..5568c07b9a 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 02e615492b..d324eac137 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 ee08a42826..0db4c34a8d 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 9cac2b8913..440b87e231 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 c949fb52bb..5dfa2b4686 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 7ccb496c6f..7fce28a426 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 a742820ac2..c74e64914c 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 1f942ca824..a6600a03c5 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 5dadda44e1..42016b7d39 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 63b44f9bcc..d0c050d7b9 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 38074afab8..7536f64dd5 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 6c1ce68ccb..8bd23ddf03 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 31527d88bd..011465c60f 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 e2b2d27a67..b724911899 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 faf78f020a..45c41e1e9c 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 6d774d58c5..95ca2cb959 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 bc041dafac..d61766084c 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 827ebeca5a..7e2bae688f 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 4a69e37c62..cff32dba79 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 dff3cfdc31..b557d0192e 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 7dd36785ee..3ac849d8fc 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 5307b1c46d..23d3c9c5a3 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 905133cfd7..e813db51ca 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 ed89b8e214..2e13ec5fbc 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 978ba96ae2..44b7248c1c 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 effc65cc8b..ea75e35ff8 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 3a47e40c8a..1b6a3fb2e9 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 be8af69770..4a145fc942 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 5b6b8f861c..e53e319b04 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 7672db415e..5556e8d8ee 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 a9e862f50d..f48414b510 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 86578c0fb8..fb6383ab16 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 9fa0ead31f..27da2cec28 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 600acb5afd..4fb1c8cb74 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 7a9d5ecf17..6cf9716265 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 b96145e391..2173e4863c 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 33d94cf1f6..f12260faa7 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 3b7221efb8..a7045eb275 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 923404eeba..78034f8c79 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 f6880ecd2d..4a16fada1d 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 c91363c0bc..798c822baf 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 8d215eadd9..b33844c48c 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 1cebb2d38e..36c64da134 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 aaa17adc42..d97104c539 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 19872c961d..054af2e58e 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 1caf4e3661..3ed5d2e773 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 e640b0b27b..969eb0121c 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 2f55ac1acd..f2f1ff27a5 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 29fae104db..ff6df5aef1 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 c09119b6a9..cee7d7d262 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 708bc821aa..17a5dc2393 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 db1d6d041e..9361ec10e0 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 1943e8f4fb..188c8eafb0 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 9d1edd6439..9446dd8bab 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 51a02c879e..26e4a6734f 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 376d990c31..42d7dee09c 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 ae11aaa666..c54edd86a4 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 0663686ef1..5074346b08 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 be09c211bb..bec4bf0899 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 733f8889b3..66ffe9e00a 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 6d28fd974e..85bd02a2c0 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 06f72c750b..27c1334f62 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 e877d02c20..c10c1e1f06 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 bea5d02823..8aa4c77d13 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 1e0137594e..b2bc7e8b03 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 fc7e824697..8774eb2927 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 2a567b4a8d..c43766a6dc 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 f2643389a2..528f726372 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 babb757ecf..1fefe84cae 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 5288687c80..e426e3941a 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 0b166cd06b..07863f6bbb 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 d4495cbadd..4fdeba25a5 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 736a47e879..c4788e5864 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 d4a49b1583..1e06e383c7 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 3a781b0ff4..daf6803530 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 62bbe4dd77..1fe8bda1c0 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 12be83f5ba..5f8c052198 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 c131a56577..1520633618 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 adbd0aef43..a7413e6fa2 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 c08e28a1bd..bfbe684307 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 9b365951e9..e43199b750 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 de4a74b2bf..8c0411df06 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 e864c89644..07cadae099 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 a93134c948..914377e361 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 abecf25de4..e37c73257e 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 02f4eae690..fe2a339750 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 597e526bef..87dfffe2dc 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 fcc94a8c35..9f48921f66 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 acd92fbac8..7c3a74d3f6 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 7c7651fab2..d7093033f8 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 dab6f0db83..f9c5682eff 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 c9baf97b5a..8621ec7b0a 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 29b3efe09c..4c66a4c110 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 fba9543e2f..1d082aa70f 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 b52000cd6e..e21b34190d 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 4e0ac17c8d..bccb0f2d46 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 6f565e0120..c875e6751d 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 8cf99a2292..00bbe899a9 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 1c78673433..e48f698698 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 826afcc8d4..741eae19f9 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 3ed98c0e37..5fa9e31fdd 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 2b78e6f9d9..591f265260 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 763d9bae11..48e7724e8a 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 3298fe3d51..56a8dcca44 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 a27a64d932..aba564601e 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 05e9575648..23a580f51a 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 6263ecf9a3..e06cae439d 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 022bd861ff..71a90db7fb 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 2c5aa3574a..99e6ef2a49 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 a8ea41bfaa..5f2c058446 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 39d489a3a8..b8a74e8794 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 7ca15f182a..91d6777eef 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 1046b8da72..37d85fa0be 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 25c78ff294..e3d66f1321 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 25bb946cad..12b83ce248 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 5c13a24b98..e0b87c378a 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 03a8fbb325..c38b984e5d 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 95c54f34a6..4193b01a75 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 2c91182360..442ff10ad8 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 54c84b7b4d..00b87c4674 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 ce391bfd8a..e8b225d35e 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 23c205fc1c..ccb4a564af 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 06b0489d3f..25227ffbce 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 bb8be9bc6e..5c4f9f8bb7 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 437f4b2a0f..746378853f 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 9bd481a89b..ec59e45899 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 be800dc86f..62006e8e4f 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 d9f581c506..0857405d16 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 6d74b1a44f..fe1c98eb4f 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 4c6b079b1f..c702a07d1a 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 72af4d3590..e4bc816226 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 d256e1b50c..16a4d2f327 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 a3245bdf87..33b21c21a5 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 4e03441356..43242b1b2a 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 cb082ae3fc..b411e9d1bc 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 d643b94c4d..d4c3b55327 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 009305e414..32f52f3a88 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 2ba09270d5..a18c3cfe4d 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 cf2ad67b1b..135f6de193 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 359f84b01b..a52364de91 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 98ff9402bb..d1e567b2c5 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 6d13f21dd1..8c3e2ac7ac 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 ef96c5bad2..66d5cbbd0e 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 517588f9e0..f58785efa6 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 70657175c4..c44241c0b4 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 6fcb5c682b..c8bf85cff9 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 aca8d4301e..9f01b17ab9 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 8070e14799..48cf51d8d1 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 a664d25f0e..02e555085d 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 7825b80d51..bfe1e6e68a 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 2a57a67eb2..c898545bd0 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 72d7fe9edf..a8191635ed 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 117889cbcb..0bb79c56ff 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 9a7e10b888..d367ec8afe 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 22934a3f07..c3b73dcbcb 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 04052393c7..5079f2667b 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 a8f528be90..7175bb54e9 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 06e4e22129..5891a6a73e 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 ab31fc0919..7f6cd602df 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 1fadbfe360..194fd254ee 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 4ea1d61b43..ed88dc2494 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 3f75e90ca7..b8e62d897a 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 5688ce1e33..26291befb4 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 ca80d831f2..af66b36d80 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 c80933d6e1..8c93ceef6b 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 6ee234cb3b..f4ec02a796 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 0bb4e27b68..45128e26d4 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 f4f2418b6f..caad7400fb 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 8109aed79a..e0674cc9f6 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 577a636869..3e22857611 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 f396fa9aa3..3a98057cfb 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 35cb7dcffe..6a001cb633 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 3e7959aa94..48f195a332 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 c36648c428..26f87604c4 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 f18cfb6460..acb41c735c 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 0a72c5602d..aa25e9d5cd 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 926a596b51..593575edeb 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 416db888be..a973dc5c11 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 dabf5163c5..255d9dcf6a 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 0830f14f81..c1962b06b6 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 5542537d12..ca2bd1727b 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 6d9dc392c9..b90dc95677 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 ee99aa6c9f..590bddfd86 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 cd3106a261..92a8dff8f0 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 408fa4842e..eb52f3db8f 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 03502c07c8..79c9425fd6 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 dcaca3c48e..e1d6edebca 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 33287603e7..a10510b64f 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 082db85017..18b9d0b0df 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 8ac1562a90..518a9e4667 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 3eaafe2129..8dcf5f6d58 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 294de5bcd9..e2912a3874 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 29ea4e581a..c71755ed9e 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 ac3d9d9c4d..b8b64d0a52 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 7070b190ee..150685ace6 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 5148c51593..1826f980eb 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 c2a3611a0c..28480f1aa1 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 beaff879b0..b70d4f888a 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 40188ecb15..30d178b749 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 32398b09ab..6b636a7432 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 ded884951d..38a437bf5a 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 77d4a7d4eb..82563a1da3 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 9090c7a3c0..e5d1ed0bf2 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 3233ecdead..fb02ca592a 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 55aeb7f612..eb29490223 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 0bf082d785..21050bef30 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 ce0d050da3..d0783100ef 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 504ac0f44f..3a89c3aaff 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 0c04242a70..77dabef615 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 50502a2df8..fac7b7f0ae 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 4f6274b727..60884f2a5d 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 254a18b833..5a1449769a 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 d5d7a42b9f..f2d923d12d 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 75971ebcf8..5064ac522a 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 355a4d5c30..39475573c0 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 805ccb853d..38280c9996 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 59eacff518..001ba54e54 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 010281354d..7044f8b89e 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 06f16354a8..d6636d4bbc 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 ea0f6873be..13cee025f0 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 985e0f07c6..8cf10c8b48 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 74a5d9621e..4463e70193 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 20bba081df..81be292dfb 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 70507f7679..55b7dec268 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 2edf1d0684..b344635d03 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 d8056a290b..51395741c0 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 7201bd8bcb..575f39e9e1 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 29734cd19e..43f9a8f479 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 cbfbb3bbf3..a75cc809d5 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 91983be964..d4122844a1 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 2e6339e7af..65db18289e 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 039210f143..adc5d6d7f1 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 00c71c120b..e55b4b8d85 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 cf5bbed2ec..7ea48740fd 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 3a19d9e1a0..55afd663ad 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 24098b6632..d47d93999c 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 18f61a74a3..9a5c5b1704 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 e3eb5a3fc4..377f7a1503 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 264c6d6bf1..21cf32ec6e 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 d34084df59..01f80a092b 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 b307e4dc9b..c0c3902de3 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 1c8b77b65c..e0674b18c5 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 7ce9f9c686..066cb521d2 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 aa63821d89..4799c3787e 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 9d190167c5..690f1387de 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 5dbb387f2c..c649407657 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 25822b192f..1eff92e036 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 e4a7ca4b71..0b089469a6 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 e0d3ad5d7f..2ca2f4a835 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 53df25e377..ea0f157b30 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 0de9702fd2..dd31ce507e 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 52309a4d91..b8308ce34d 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 066d04c963..39a663f553 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 042da6283d..0dfe4c0a48 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 0bfd05a05a..4a23d1f08d 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 b2e4e9e6c6..cd0f8d1ab6 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 0ba3ffbc0f..3da4e3879f 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 ba86b4a4af..a214ac146f 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 f3867f7bc6..2b3fd06ba1 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 bdaf25b825..923d9de25c 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 26b001c723..12eb188b04 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 bd37d3107b..bac6b59fd7 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 ef7ee92889..3aab1d8784 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 6ba12de4da..c7a48075e4 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 9aa835e0e2..7033ad8f56 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 d9427920e0..0383df4954 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 48c3577d90..452beff6d9 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 7daaf69d36..558abd434c 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 565925d6dc..b6e1c5b741 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 6c8b1ab534..c968d99052 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 4b839ef561..ad905247a5 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 b3b484e755..5297b67aef 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 4fa5f8fd85..d7855f1277 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 84a291ce63..118a67c354 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 b111ac06f6..d119563cfe 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 1b8b733cab..b7d45dbbe5 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 5fbbcf7e75..3c938c48fd 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 0e9f560f95..f0c6eea1ee 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 0df63408fb..b1cac90c16 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 cf27bfd9f9..bc6363982d 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 11177a0e3e..594b6b44d1 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 6afb43b704..80c91b2110 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 9cf9317e0d..dfd33c1401 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 37b71c4992..d5907ac170 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 2076ef4981..f0307eb838 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 32825a02ec..8d0bebf692 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 9c64139e3e..9dd573ddf7 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 59fec7c5a9..e1cfa15a70 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 5bf16cb82f..ee37bca8df 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 1d336aac25..d0bcaa2649 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 c053520b32..d0eb66c8b6 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 cfdf54c7c0..f12f39dbaa 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 3d7c4551e6..c7865fd7b4 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 85e239e819..5a6486f875 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 b72f9f4601..b39e643f26 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 1089da0a8a..bc6f8f5a79 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 9e2e1e6b0b..b7c60fe68c 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 0cddaf76c4..753583336a 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 4a8d7ec961..880392ca70 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 29c5ec3be1..7f4ba437a6 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 ea01047b5c..e2d8fe494a 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 0021ec5d69..d7f63b57ca 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 77beebfb72..7a1fba504e 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 71198979b6..a571d4441c 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 0750ad76dc..868deddbe1 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 79d5af95a3..df0e470f8a 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 511454e753..cc1daf4836 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 6aecab0b2f..e1c669ca14 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 8a38632995..7bf2d8d54b 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 3d0be730f0..ebc1b4b95b 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 4ad89e74d7..0d45af0319 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 b39d24b0f1..5db26a8620 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 ce3f4aae50..6ecccd3942 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 15830db562..3724017a65 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 aa5e36fec3..a0e172866f 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 ab08cd5ca5..e46a47ffd9 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 c33014c1a9..b760ba94f4 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 296ad61bbc..84ccb4bfdc 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 8b153ed102..52055e6aba 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 a92b99ff0e..8501e64829 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 438c8f8b73..bfd2837862 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 a06b5882f1..d51410b387 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 104cd5356d..a20dfaf1c8 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 6e25ee203d..d40ee8d321 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 213512159c..aadb839522 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 38289801e0..00c62c241e 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 f63db0fbb2..39e9803ec7 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 ea7886ff1c..c85db1f6c1 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 bf4d1e49ae..22f279498c 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 476c0516a0..08b6e8e4ed 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 4a20ea7095..da87f867c4 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 bfb293a520..8d2d6b9273 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 96b1ab0614..0166150dfb 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 05092e3779..286c62950c 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 ffc82228ce..ea6b01b0b6 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 fb806fbb14..7d5ddff6a8 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 a397dce853..735f4a042f 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 4a39faed55..73dab904a4 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 015c9d76c3..c413dc22d8 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 0f7cc379fc..64bb84619f 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 bf0cdb401d..4a0067d989 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 f9aedb2aa8..a96fd4fb7f 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 3ae34269c8..2d7f17f48b 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 505a5aefbd..347a6097e6 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 f0ceb27415..4180c91ced 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 1504e00e9a..820a9ccccb 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 3e33f80aca..09e1953c54 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 e7e4524591..b27e584eca 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 8da09876c7..1440b285ca 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 5c6d2c3841..b7a35daf28 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 c1458a8f9e..f03d32a3fd 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 2908e097c0..6d810f4baa 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 aa49028673..9d899f114e 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 a00d8e87d6..8adea8eec2 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 f33b91f7de..9387fffafa 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 07d8ded9e7..3e48586e65 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 a82ae0b29e..bca2a635bf 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 0cb2e6b37a..c57508bfa1 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 3b3d2d9459..599b3b9f06 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 e07c34a1b1..ba9f56c9c0 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 310d82d255..f0350ff6e0 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 0883438940..41d13a5b31 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 c98a27cf4f..108dea75cb 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 cb41c0db01..e6195a0ef4 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 6011bc5375..1ec0c39a95 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 7f66f6d845..5e66ab893f 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 7b3237a136..463bd2e5a0 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 27965a99dd..dbd6b84457 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 a928509ed0..71b7be54ac 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 50b33349da..a1fc552daf 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 e797e3ae08..fc0f76651c 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 a8601eba14..d0ea78c46f 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 7d8b36f692..1f479d5d19 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 2d6bb4dc64..b89a3563ec 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 c98fb18bd7..63cdded459 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 e1bd81b6e5..ccc83fea3c 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 f073864e2e..c1bee4d93d 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 9909163253..94207b3023 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 670f2120aa..cd4a2d919b 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 abaa4548cc..db30d57418 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 53fe46a6ad..b27a57e921 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 3c5e168393..fdab14cbba 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 c89a92fcee..27cd583e9d 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 a14c85e701..bcf097bc24 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 8f164d29bb..fee0e65f5f 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 b90d71a68f..f4d48cfef4 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 ce623c3a20..41aef01602 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 25b7d3e114..057c3fea74 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 83ea29df17..012073ef37 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 99899a5bda..5f38d76f1c 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 a2f4a574a8..8cc8128ae2 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 5567817101..89db19cc3f 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 906dd3ad34..0c3bf4bbbc 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 0e4438fc2a..9f30ab8f85 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 877c86e7f5..b53627b103 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 eb0d0e919d..2bb61b255a 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 7a9c4967f0..33cb9b15eb 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 754f494ec6..1358f08864 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 568e4ecf41..c1e32ea0aa 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 4947b8e4d4..cb786a3b6e 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 9c7bbae9a2..c518cecbc5 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 edc2a8fbfe..bb269d2da0 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 0e16d54afb..dc98dbe1e7 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 3d1339ddf6..2539fa5e3f 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 9e04c826b0..c71fc4fa85 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 292b6162b4..270ab7da7a 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 471890dd14..fdcfcd6a17 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 20e32b92ae..0fc7c7796f 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 c622b20aa1..b0b2ab010e 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 1738032d32..fbbf1f2983 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 be93766aa2..a04e1b542c 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 71cc52ae82..49653f011e 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 1f98a7f875..2034503c79 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 0aea2549a2..dbb6f4b1a3 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 62594abcb4..a1f2896f5b 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 2252f25af5..3b44b11bf1 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 ad7803ef73..ad4f6461f0 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 1b5d3f937e..faec479fe5 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 b00c5bafe6..8533d7b091 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 d7dac5660b..4f3505be0f 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 5f5bf85900..dfda95a5bf 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 da3689d180..5b32f22de3 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 253bc8f6bc..872d4ed8cc 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 0045e067e1..b1b11743a4 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 78c6c66d8c..240d2ffe9c 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 4da1050403..caabc1a918 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 8da964be33..c65a182225 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 f9ca5225a0..fa338521a4 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 540069405e..a70b49378e 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 32b279ad6c..c80627b4c2 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 8b527b4d21..e442d705d4 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 7cc39a95e3..9c76ea9ef6 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 f8106ce591..71e5ed0de3 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 53e714fa70..c343a9d7dc 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 cc4170dde2..70535d4339 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 e7d8f33133..906caa8707 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 8d99206306..2ed0131485 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 249bfc0343..52d32e6541 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 cdfd1813e9..9b13357298 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 4336117448..5cbda6803e 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 b8cfb33e46..199d17e849 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 0f3bb1b8f1..62ff9fc637 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 b2fbf5f1d9..88217b6a8d 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 bcf19a7ec9..46743836af 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 2ffa53573a..2d99c76945 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 24bff39fda..ba7fda2361 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 d9e93fec09..f402a4347a 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 0bd1d494b1..38b8109c7b 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 4c9957d0f1..5094bf1ca9 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 1f756a2ae6..6abe811718 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 9ff7568812..93496bd7d8 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 fa3542a973..1174a1ca03 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 cfb229eb92..c02528d831 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 d8a616de44..456ef65b93 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 eae4180291..02664124c4 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 ac205352ca..90d817ee53 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 ab7a238df4..996c5797ea 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 430595f0c5..2d063e8586 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 65fefe03b7..4f822af79c 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 3cfa391527..038b422c50 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 ab2fc9ccc3..d7610ddd72 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 881ffdb882..574efdc4d6 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 47f3385836..1637123346 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 7ede02ba7d..be77ca2507 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 75cf214b59..55b8dcf2b7 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 183fe4a977..f8b1784f1d 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 a34fb241db..701433fe41 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 44aee6288e..36a87cd384 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 73593ac838..a15f9e98c1 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 7fbebb83a6..8b3c8cc090 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 b8de23497f..e8f0b87057 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 68732a1a1f..4ba826ec8c 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 afbd4b909d..d9aa4dbbd2 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 4b6d91c6f9..833f8ef015 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 93f14adba3..5095bfd1d7 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 27ae2e8323..3905f32f51 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 8d2cb2331d..97a69d8cab 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 242331bc57..1549dd4a98 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 a2108e2374..8d4c54055b 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 1fa7503397..2ff8797cf5 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 510c6f1a59..636e950ca9 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 d0bc0435a3..19f8ca27eb 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 73a1e2cf7e..61cde4b360 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 9d2a4b629d..dd35b0d661 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 87d449698b..23ca7d4301 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 048b09dc57..2b1b586f52 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 a1296bfc94..490b4a3be9 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 058a22338f..08b6fb7be0 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 4b1780a429..5f6fc2059a 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 da35c8fca5..88113aea1d 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 34634be6d3..2703755c28 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 9501a24501..e7218359cc 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 d8f2ab05e3..f344a4278d 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 737df0b446..2c66a40c15 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 c6fe7af6f1..3379d3902b 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 a5842743fc..5d24bfea0b 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 8123b2760b..52724404b1 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 49d572189a..81a60d16e2 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 11534931b0..b133baca20 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 5a12695891..964e32f9dc 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 d5bfa98cef..0ebc7de077 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 83227fe57d..4f8de69e24 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 f7939d5428..4881f63831 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 7785a868c5..13330c71a5 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 99a4843354..b8fd17eb50 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 67698b235e..d59afc7d78 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 36341c075b..729e376e09 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 0f8345689f..6ece7b30bf 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 6478129b2e..4c6ef594f1 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 675c46c5a7..ba298a1f63 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 341e97a3cf..13d75c84f8 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 ba5a9136b5..39ed9674db 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 4aa3145ae9..2ab2dfdadd 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 8e6cce0d16..b3a3723b33 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 241f9a2313..f8660de855 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 63fbb4b114..60c5d52b0b 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 c340d01c8f..2bb1792da3 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 054c386825..54a094eed8 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 5d67784b24..632b314b91 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 c4bb708aca..17415efe8a 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 90578c8e92..5fe0ef0970 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 63cc65128a..56305c1337 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 f3a8fc242c..1298ef6cdc 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 ac0d53a5b0..4f0aa5d323 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 5336ea8af9..7075b60aa8 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 1508ec2023..5d6015a346 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 bc29e0de9c..792cf43900 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 9cce187453..d5b0fbcb55 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 61df0fb272..874e5d8ebc 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 cd67019e55..c99a5632e1 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 adf6683a28..f427e1c163 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 9b7efacf1e..e339da528c 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 ef870c0a38..1cdf73a379 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 3205ef63e4..2c14567b96 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 70bfba6ee3..c27f9108fa 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 eabea009d0..e5eb23a692 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 97f29a783c..4b419a0cbf 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 eb285919c9..15f25baa59 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 f0aa6bbaae..5679a3d208 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 bb623f024c..f3d3d80939 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 ab9de91b6e..4701e063a1 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 e4016b78ad..9c7a7de01a 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 94016780bb..a3eb92bba1 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 1efc4a8c82..0b53524f14 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 f4fe1d71fa..2fa8d7b9bb 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 0c69034265..a8ecb67780 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 78aea203df..06439934ce 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 e7612e28fe..b2eae35ce4 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 a3bcdfb0c4..a642290c6d 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 14f522cfcc..055a54ae41 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 4106b6cd56..e3083eee99 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 5588d5d439..948429c36e 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 2a289dc723..63488287f1 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 9333dbd453..86b42c6d02 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 de7f54e68e..2131aaeebf 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 67e9d0b8dd..beaaf55265 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 7374633534..7c48a9ae92 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 e9381076aa..2af91262cf 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 0c71577a53..a7465ca5ce 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 f90082315e..e4a9877bf5 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 6e44eb276e..9da97474dd 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 227657efd7..e4129f864d 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 c395bb0fbb..f71f8873d0 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 f91e0c684a..f57ca76785 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 616e088f5c..c279a9f448 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 03d9da44f8..2617778d99 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 f24985f818..14a51e840e 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 4ad26584ab..1e89907317 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 59355966fb..6ef38ee01e 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 7c4c5ad71e..8c6c094013 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 3713b8ca76..c8a40cb620 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 5643ff467d..d5d28a798b 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 985f66bf61..ba4568d021 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 fbe5320c94..70648616d8 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 7c76d05db2..9fa58c3b7b 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 afd43d7922..268383fe7a 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 e99ee07507..e4c7d0ace5 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 ad4e09f10c..cb9eca8c59 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 67051fd0c2..217f43cc93 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 a441d9443c..2634b444ff 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 982bd18519..171c48ab49 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 1e69f351ee..65de0ebacf 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 e1d8689002..e71ff68c35 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 ae62d51b64..3264b699ed 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 03f821a6d3..f6d16c1a4b 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 424ea6b503..d91c3429ea 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 b0cfd4caf4..24733066ef 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 1ff02838c2..b87956d118 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 d82335cec0..f38abab39f 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 7080494d60..fafdc166c3 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 2ef98fb8ad..9629f3213b 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 e6e0034bc5..bf5293d876 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 9870420966..f8d221a7ea 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 301d02e9a4..ffc7884916 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 31410e1c07..b597ee723a 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 9c0ee394d9..f2e6664995 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 b1e48a3d94..432c31f594 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 0551370642..51e05e3116 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 609a7f04fa..ce9594b681 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 45d40f7a4e..896109a169 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 17ec6fd7e5..987a9719da 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 f548580a97..07cc2232af 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 898f9a9613..c1f75f38bb 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 86e585415e..b2e08dbfac 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 5eb57c8508..379d4ba98d 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 6d16301c2c..27c7993569 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 2fd2119cdf..dc3c75ba5a 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 a8bb5f74be..33d91c6a93 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 dd34333910..1bbff23213 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 50958953b8..0cf05611d4 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 8c40572266..06ca1ce559 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 725f98b877..a704749afa 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 d8a5816ea5..6fbe1a2143 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 7b52596904..d4ea6916b4 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 974be2dea3..f4dc6fe2cc 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 ed720c49d3..42369f428f 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 0082984bdf..82b395e164 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 ed77b1f7a6..f8f91897a4 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 2742f21502..07719f6973 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 1e517407fe..ae4bc0565c 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 b5af911373..4f5dd8e1c8 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 12f856d185..752e7f38e0 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 910175172b..e60a2e438f 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 a4b0b630a1..5e787e168f 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 c82e2b5246..53258e8474 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 5506fd796b..d917ce8522 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 2ab2414dfd..42f51a4471 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 3e5b8845f3..0435c357d4 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 bd2606bca5..3227b35f99 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 c6a31b4f2c..4ba69425bb 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 269267bad9..6469361ea2 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 fa9dd51cde..ac1c83fae7 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 9729a0fc40..94865d15c2 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 297f9b8cde..f9c9b80bb5 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 587015dfb9..ff7db31822 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 c96f073b29..3571d4ae52 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 edb557fc4f..01c3a47bdf 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 dd50c145c3..7df1c9e7ca 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 2bfba22058..c81a7da516 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 f5fa33f9b8..5815d4dd5c 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 b2f03b810e..3a3418cbe7 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 59be46fbbf..653e0bf639 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 d969cc5f36..5a8d26cf69 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 0501346118..6a8439b388 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 3beac93d17..447f1c36c6 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 96ac9332e2..cd1b17426e 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 58c7c22225..6fa1c26ff7 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 c9d31b4dfb..e17e0b7cfc 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 236e456405..a2406f68ac 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 efe2e06352..a70eb91564 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 77dc555080..d452b07fd4 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 2c79aaa3ca..5f93dd5d71 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 7c07049e45..9891554eb8 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 09e1d71b1d..f66996e442 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 8210bcf612..27e5dab3be 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 c271e2380a..daaa76a4bf 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 2b560b94dd..f5fe8440a6 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 345d08094b..51e25b26bb 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 724828b64f..60cf4e91d2 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 b19ef3fe96..c4f6afafc8 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 746a3f9454..b4f754c753 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 513a921032..a2f7878100 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 c028822a53..7d32bf76e5 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 c8434d1a98..d412ac1754 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 628da9e9c9..4900382840 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 fd8422168d..3cd11c19a6 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 be36cd7e05..b1dac5ba45 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 b9fbcb61d6..dab1c4b05d 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 39c1ad57e6..fa5e453735 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 adbabd2e57..6a7fcaa904 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 c0fca3924b..00e3975492 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 1195bbcea3..97826d5119 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 2f58be1bcc..5008b5142c 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 1781ebc642..224477a1c6 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 d71b6316b2..20bf606db7 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 3fa8c52d37..e5417b4abe 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 53c1277f96..b6a2a9fa17 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 b5e3930b63..ffa288702c 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 fd7e2557c2..7bc8c115d5 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 57ccf96188..49d141b502 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 ee7da10f15..1e58fa24ec 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 894bbae254..6a8ecc31fd 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 0495c8116f..ff4b957914 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 4886e2724e..88a8107127 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 93340d7c62..0318a8a90a 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 7258e4ba08..b34408a299 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 18b5801498..4917c7c089 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 85f19fa0a8..908b114eb0 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 d38229ac53..05610339f2 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 834a260ff7..e9d5d8c65b 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 2832dff978..5581234482 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 7f62eb9423..e7c08ca538 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 1fb7014a28..53057946cb 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 58a40a1e9d..92be7f3d3c 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 d10bb19981..cf4f49905f 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 b0a87a53bc..7617be2c2d 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 500360848d..ed3c6b8272 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 ae7cc10164..eea9aa2d5f 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 fe69b4a012..c345e0b8ef 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 51d65b7b5e..d6ae03dc9e 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 e6e2087155..d1260a1cd4 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 36388ba7bc..f3a2bcd4a4 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 0ce5f176ba..3506af94b6 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 f6b484e4cf..d11cc08f2f 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 027dfad4be..a270bc5077 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 953d7eb89e..d77c72bbe0 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 c2a4c83344..b92df8290a 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 51e2013fa0..6bd9f62f04 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 85175cded6..743e93dca7 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 dcd983b84f..dd3ecdf974 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 458f690657..5a8f44b8c9 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 4e76386ecf..4f8c9b482c 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 998aad8a82..e428bacca3 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 b2fc1d7807..a2af9ff232 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 e50c06ccfd..822e622eb4 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 9d90d11b85..542ddc6f10 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 9b76a3f19c..c49b05b59f 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 46c0be63f3..db9833843c 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 448c5d2f46..3be564f960 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 b8274e277d..1fc3385ccf 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 6f02362d0c..b32594c6b1 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 7acee30d4b..a50961677a 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 2e2cba771f..85e82b669f 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 4063eaaeb5..2374ad37f4 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 11ac1d8c08..dc90f570d2 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 6682c831e4..ac07a25d13 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 0bf0c682dd..5c125210ff 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 d365b07ad0..46228214e0 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 b30cf6756a..7c04879c9d 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 68decb188e..148bbfdb9f 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 125600c2f6..dd92801114 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 8318593c5b..529d49037e 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 c5b8844a42..cc5ff1cc34 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 9a6b40560d..d5b1364ec7 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 654258c654..9a40777b85 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 98f181c04e..c6ff68c920 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 b1d98fc110..1598e7c767 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 83e1420a67..c116b5bf0c 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 0c0a6d4f95..20b925d5b2 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 0c800bd293..28af17f029 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 dea7990255..381ac457aa 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 4281f527ea..eb6741260e 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 d992ff28bb..bd9fafb856 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 7dbdc90261..b1e8d60e03 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 5a3d7d334a..801c492478 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 a0e87c19ee..8a554d4e68 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 db9955167e..9778959f43 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 b30e9821c3..92c6fcd607 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 e39c2af6a2..c9d78413ef 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 29400dcb79..263a77ee61 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 849ae9d6b6..63d48a087d 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 a5d9dbc2b5..c3639e993b 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 66b0fd99cb..cde62ea009 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 222d0fe944..c1217d55e4 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 34909b1f58..1e9a710551 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 1605bfce1f..660e9fab8d 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 3e01f831e0..8c3ddccc05 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 085fee9bfc..3ec87044b4 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 4b00b54d81..25db813e5a 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 da4babbe58..c374d1a685 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 8f5649fbfc..bc4a0407fc 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 839a8f1401..bb46c3ee5a 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 261de4eb9e..8ceb545027 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 840256d08b..0fb19f1596 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 31a9b88cf0..53e9b6177c 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 70df14b3bb..1a89be38a6 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 76abe8aba3..00a73b6e8b 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 9f330e9d3d..e584c1fdda 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 438482f78a..2906fa56f3 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 8f6a707417..3acdd2b9bc 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 781d1e570c..b2eb030688 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 d5f2c3a31b..d2c4c5fcc4 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 a4a0c923c4..42a7b71394 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 6b641eb9b3..6bb9594318 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 573e4f29c3..c7c52a6635 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 56f8e4f695..9dd27f5291 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 cd41d85db1..800305fc75 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 ebf6fcb3be..accff7545b 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 2925020157..2644bd1d51 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 b560742a68..28910a16af 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 1ef4d3528b..2707e79074 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 7ee6e652ab..a1f52af038 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 5721f0b0b4..635ced49b6 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 090c560d31..55e6fe35cc 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 fc5d644324..1c5a02296e 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 ea05b5b900..98e97819e1 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 9fde6edf44..442e3276e0 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 a1c93e6754..4de2090858 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 fe6c20d8e5..34b5164554 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 d7624ed0e5..05904c1fc1 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 a233ce3a63..b9a7f2ec8a 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 4e18f1d260..8f174611cf 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 dfc4dd9349..84ee7a925b 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 ceb84a7880..bb16faf3f9 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 b39d5fd5ac..646d1c3369 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 89aa79ff0d..7063d9079d 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 ca881647d8..f396b9d19e 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 18b2415980..874b181e7c 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 1d16c29b51..66b87e0f78 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 eb1ed3e30c..19068bd334 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 01bab13bef..457796c180 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 74aba83e8e..9126af39b0 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 aed7e4cdb9..f43adffe4b 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 d851e41549..fbb4799f30 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 55c89d3371..70d3dbaa8c 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 8d5772da8d..dad950c0dd 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 04c7f09ddf..a03384c509 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 547ffc698e..dfb46523bf 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 0fb0971582..37f0b4f523 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 35a67da316..9f5eae1009 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 ddcb2a8bf5..6f4ea1ed8d 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 8c819a8b13..4d28a57d23 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 3c9bdaecc9..588a95e8b7 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 aaa46941a3..bb5bab2479 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 0a89c1da6d..cdb993757e 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 8d53803167..33c7bcd9de 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 3c25c3f8bf..95c994a5e9 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 543c4070a5..d82f4b3d36 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 046dd6dbdd..50cc3ef1a7 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 3093019122..540a0a888f 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 d8974295b6..486d077068 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 6702311644..99f1953d97 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 4dc7810d26..5d066577a0 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 6a8a7af340..c64c57bdd8 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 fb7d545ea2..c89a6206ac 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 9f5ba4c06b..c8ea60aa8a 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 a33199c20d..556bf1d68b 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 791a1a27f6..162355f558 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 21a085992c..2b0b8ba0b1 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 bc53cf66e1..db42176428 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 f07aeb98c8..1368220305 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 db4e5cc5c0..4e0e75271a 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 e479e9ed94..625a8e761c 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 b918f7b933..c4945d98e4 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 fc513f13e5..eb92bbe8a3 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 d57f666be8..b1e61f0211 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 757d92a8b4..840835ac45 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 a7457debe9..cf0ad09b22 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 4da8615e2a..6fafc3de9f 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 5b62669ee7..ad95f6a199 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 454fa05b38..2fecdc64f1 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 a6264b1d69..d3a96d63f4 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 6b98c3db80..c161e8d41d 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 023849c839..1cf6621a24 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 21928a630b..1e8a336b77 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 a6ddf45315..4944685623 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 70c947aa76..17af978b21 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 4a4caf7606..f0037d480e 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 5552481861..96472945c3 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 e7fa17bce5..df3472bd30 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 f81e63e12f..5b66e54468 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 c1a8ac87a0..c15eb6231a 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 0c78a8ce24..7e4919832d 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 2d71a36335..1ee9d64172 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 f1f22298c6..8de418c1a1 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 e455ee2c42..7eb01c696b 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 8976de7bf8..90ece5205f 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 8d7b79d9e3..52bd04a65c 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 c0809a31dd..3e1ca7c43e 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 a2230a8308..3c8346b6cd 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 81d238135d..06361d03ab 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 3d5d25e870..0d2ee25f92 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 3c38bd53fa..bd5e3650c2 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 fe3500925b..80447bf318 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 f8c5271d18..b02359126b 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 4b5270c5af..61c25ee0b2 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 c0ee031522..46df0eb909 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 f8285bae3e..49539f5947 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 da4c714403..0757e81e7b 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 19ba66a9a6..6a35274ff8 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 f9edaada15..fc95568097 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 2ef7375d8d..f258811c4b 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 db4b95e423..e8464f1e07 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 bca4cbc701..80fdf9b758 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 25f4963a0d..2d4c9cc9cd 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 ef06bfa362..8adb31f0c1 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 f033524a6e..67cba6d76f 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 556e5210f5..d51db9e9b7 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 e967a7d023..7db9a18bbb 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 b55e3cfc10..3c33240bda 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 50c026c94a..bfcac6444f 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 93ff7e4aab..7fff914dfa 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 244d75457c..77ab6c7c9d 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 92c6025bc4..d5e2824f04 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 55e1db1add..a887166adb 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 6e52c6a84e..647743f79a 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 b1190e9e79..04e60fba3d 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 6314f33463..3763b7988d 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 1566b22e4f..b1abb8af16 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 697628e9dc..7e1a9694e4 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 573fff53b4..d89c8e846d 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 68399b5faa..219eac80ea 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 9f4be00895..3367e1b072 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 7d50bbccbc..f31a2b23f4 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 e3f4dc2605..bc735e0a8f 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 6059763efb..bb7b99bc04 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 d5f6ab67b6..0d97626f50 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 4365d6966f..9f9f042227 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 11e2e6c979..a2c9c42c6c 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 a02e204b38..a9ad04e82e 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 6f199c9d0e..f677fbd7bd 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 6304ccfd5a..237afc0495 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 be55623a5d..9646655e32 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 c9bd9f0d61..fe35107e5b 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 b2c8441a55..db567c964a 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 45de4142f8..51c1f094d6 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 f56c6fa422..95461dae7f 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 38f555aca6..d938698273 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 3423dd190c..b324369c0a 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 64bf747fb8..b546a4f9d1 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 365dd5b37e..05254a2b27 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 21bfa6a6ed..d925d92bd6 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 46aa2e7c3e..698914d91b 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 dff740f109..980922a0e2 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 0c46acdad0..50a10594ed 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 7e3508e7aa..d4d064de06 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 157e84083b..7408b7944a 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 7f6f815881..8d840240aa 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 02557c6cc0..3948b62e69 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 c9b3a1ab9c..ca5615ee57 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 4c1febdd64..e1896c14cf 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 bee2daaf22..e8668b4775 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 ad5275e432..95c2a630f4 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 801c9a7db1..a57cc094f7 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 21546425ab..9d20df8eb1 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 d3904a9a35..5e2e0dff44 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 59f946cda6..e8b9e7f7d4 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 52cc1b33e4..fcefc9d6c2 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 6f5836d07f..1512832326 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 2bc0567b1b..c18ae24e91 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 f28c02e1a5..6f6bd7c631 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 728e403043..6963ef3ca8 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 9db14d7c9c..b47867e6cf 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 a82333a9b5..f55a91cd0d 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 55e7b69ec8..f192980c21 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 a42199821e..f41eb5e282 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 334065ac23..3114e8e7fe 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 70e114910c..30b1420e0d 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 f098d5a62f..c8f7ca9edf 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 0d43fa495a..20d678306d 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 acfa8f4641..4dbaff9b15 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 279bbf4eb6..fd491d0059 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 8c263c7f1b..5e82b65909 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 5d5d7060f2..0967100a9c 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 06766695a5..181de0193d 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 7dec6ed107..c0906a044c 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 35175f1952..4f99a467d0 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 f9cee07ea0..3715cb881f 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 8eb06950c8..5fecf5ea3b 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 8774ca2048..ef7dc82855 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 5d795b7252..68096d4b21 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 9fca1a6250..675544d88b 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 c469c35260..ce381aa926 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 89bba1d470..0714096b15 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 02141df397..0515398a62 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 ebdcab4004..90701614e7 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 828f762951..ad8f065d65 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 30424bbbbc..164d02ec20 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 fcf4a06063..323f864c41 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 f3489b9575..86ab0b080d 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 c915c969f6..d0e65017f3 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 3585572b0a..18e1dc58fe 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 35956f6d80..4df36e29d4 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 1885ea61cd..0da2c73bd5 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 e65d57eef6..ac50b5e192 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 cbe372b035..0723b51728 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 e83c0e18b3..60abd5d510 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 7e12068ea4..523a191801 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 bda1ed4969..51ed14f371 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 fe1109a427..788b862037 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 855deea59e..ce8bf16f24 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 4f866ca27f..cf76e3a8c7 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 21c3412d0b..8635b2fce9 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 ac08ff10be..62b8e75c90 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 531cbe73b5..02d0ce9631 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 e2f7c007af..3a9cb53eca 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 444c785dcd..253a9ffa7e 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 94a6039a8b..e4c5314d17 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 4425f41ae2..f8f999a55b 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 d46b89407c..0f6b7cd760 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 2f639e9053..0f4cec0ee3 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 43db5a99d7..a1b06a0b76 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 39260488d8..04fdd78185 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 f4771d7fac..37233c57bd 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 27a263b33b..990522c8de 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 627d37606a..797c5e456f 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 d0faeea75b..a3fc2bb3a2 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 ffd9b2097a..453f904383 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 766b5f7a61..00e38514a4 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 c7262f9e6a..9295eac4c2 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 ca8c83d963..78f20d8188 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 f82897f192..d1b59a60c6 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 a915c1dc17..c68e98e0fd 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 a6a3144e4e..79766c137a 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 932eeb697d..25965960f7 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 9e43d53121..fae85e7948 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 935ce0a654..6a3cc0fac9 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 069916da41..2c21cb3d9c 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 814eceda5e..62475eea15 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 f0020b34a4..b23d32febd 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 4206d36f6b..4d8f5dcad7 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 710626a9ae..a4d4c1f354 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 54f69a1498..8107c117b3 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 6987fa7c2e..d5bf6f6f94 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 40ba0ffa2b..23079340ec 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 6909ce5a4b..1ce4b5a617 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 e69aa260d1..e2e5e1c798 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 c1d2cefd57..43e5ef73fd 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 88bc18c02f..76d6a6c51d 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 f1c318c107..8fa9d12691 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 b7c48e81a8..42ca16bb8d 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 0d877fdc4e..f21adc03d0 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 48e31b792a..6959ee7264 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 fafcbc72c0..4e9cad37e7 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 459049318e..f9d33dca96 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 987123008e..8f256352e5 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 fe272f6a7e..21f8d1abad 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 e57ad2e36e..73aa47493a 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 948a421795..e2f9603093 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 bc4b8d4854..c79179ef3b 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 1d771c537c..52508cab00 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 558c9c3837..ee1a6ab783 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 875e336d9b..23afd6f517 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 d42c58075d..2d686f9827 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 635755731e..ad59645e82 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 6638c44ccf..3af05d2e31 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 77bb6ff19f..44ad3e36cb 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 b6698c54a1..61cac0fa2d 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 ff29f5eb47..c76dda251f 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 56e867fdcf..4b10480a66 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 fd3b0db0ec..cbb798ebfb 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 9d4a2b8538..bd5fee62dd 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 430e8a2b2d..000319ce25 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 2ec87084e1..a1bda85860 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 aa0f70e06f..89fe8e0e38 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 7688cf3038..1e53a197ea 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 3d213b3207..6604801d7b 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 ceea948ba7..fc4bded4d1 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 8b4f5ccf14..c06399ca9b 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 a59df02dac..c86c7f6ade 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 3f80a8c9c7..790085c707 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 b5fb09db3c..d8debf3e71 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 0f5930cca4..8608c56669 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 e810f31298..8f8837a63b 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 7686351003..d57f16e1eb 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 6ce8e77679..59a89b5df0 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 320cd9d7d0..53375d7eb6 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 c78d3f9e80..b3976799f8 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 8552a3b70d..7115445088 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 0c3f4c1f98..7bb810ecb7 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 65676cb157..a85e9d78fc 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 6eb83da1cd..45aff5349f 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 349d78d149..fecca66040 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 df5a3ece5b..d96cd9ce6b 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 418274c94b..450c89ea7b 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 a1418307ea..680b511245 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 e8f2b946c5..454f4fbc92 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 f4cbc4c78f..895c2c993b 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 732729d7b1..e8bd6a2a3d 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 ef31239c4c..8f456b81e7 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 3f8637688b..a8ae3217db 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 8b88a1d889..7ed70a3567 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 cfe77b3c10..64a66d0947 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 c8c5f8cc12..ac28def393 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 b2ef022476..b8352d0cab 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 69b0b8349f..8aa39ab3f2 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 6b704c5d3e..749a297958 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 dd467db324..a6a1d0f13c 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 4f36a5f456..6f41450a5c 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 f1b227300a..2f3d273ced 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 c8d49220ce..a09bb499e4 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 6db22e5a0e..648c782433 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 ca49943585..ff1e5879c2 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 f079af7c6d..190454e8da 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 89e85283ba..a0780c236b 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 d92a2e2a90..6fefd1c6e8 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 026f87d31d..c41293a039 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 897d9f42b3..e29fb4c2e9 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 29875093ac..30bb6fa880 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 00fd1da431..2e262aeb83 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 b7954f3abf..589a59fdca 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 60085fe8f7..660531e880 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 32d1203f49..68dd2c0a75 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 b62682ea9f..3897da2e29 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 9d26e23a14..b1dbd8369e 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 e23aed6ecb..399fe2d42f 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 9a211aff04..6bee59b635 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 f533fa897b..5ab196eaaf 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 3c7e7f8e6a..4bffe27fab 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 0993d2991d..53472cf16e 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 7083280a24..bc26adb355 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 ad1901cef8..d249f38e3b 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 2960a11390..ae6454c51a 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 6829005508..287ecd8bf0 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 a5e8ff34bd..4e18690be1 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 99dc01df5c..541e826a5b 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 a5968fdc8d..492e0f9b3e 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 ed64c929e2..bccfbceee1 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 13a2ed38d6..74b9420157 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 0d3430d6b2..32426bf3cc 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 d882101f53..7946451b0b 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 6c40a9fafe..0919100852 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 8dc7640d5e..425540d83d 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 57605e17d0..ddf3b42e54 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 80a9cfc670..91703b182e 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 9621d5e404..e88ea93a03 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 9d06c8a429..586f9450d6 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 22e10afdf2..51c5c2edea 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 bfb1cd66c0..a8019614d3 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 c524e5ef72..ff95cc607e 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 1eec4d4674..77e4276783 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 dfffe050f1..9fbbf11ded 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 d1974a033f..ac1b0c96bd 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 3ebc061c92..3f7050d6df 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 278833d482..14cd4f581d 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 c771c39b48..dd5bdfce5b 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 020d4b3d31..bfee639082 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 8393c97205..e4750f4c92 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 3acfc79b48..191e97c525 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 d69101e394..98a9569e93 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 cf6f82cbdd..a25608b236 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 ab1f2c1a11..00abf41bf1 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 030196430a..d111391e84 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 aa97ae54ff..dde0a06745 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 e019100819..4773809fb4 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 379e7c27b0..a5ce32dc90 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 7e3d9cb5f3..9f7791fe33 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 dc5b5bfd09..addc111e4f 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 bace927242..d085733dfa 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 8cb0b0d44f..8ae264ef7d 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 766b25bcc9..0af17e2137 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 63c923b4cc..9e5fda2d0c 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 4ddb2e22f3..94a8a032ca 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 e7b2cb4817..7c68ba115a 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 5b35479983..16920c66b8 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 ca85974e9b..094719a3ff 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 c6a3c8ed07..90f4f6ee0b 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 2803907dcd..2e919245fb 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 25dbb6accd..24af797479 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 183c2410cc..f6b01bfed2 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 c415f595f9..e7f8345dac 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 dace43c3f2..9bcda71a8b 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 fcc8043303..a27c4c8167 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 be95237350..bd278bdeae 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 dd4545e679..e97b69bc3d 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 24ebd64549..e2b1db5153 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 1a670fc13d..9636e2cbbb 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 5424e6e66b..85eeb9c67a 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 f8c2e8fe54..d300463f19 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 053080c875..6841da0d7e 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 42be4bd67e..338237db6c 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 25dc1eb43c..7832ac05b4 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 68b5ac1804..7281853cfb 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 9ae1efa8fb..07123c135c 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 d0db3a8469..07a9f37261 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 dccf43fa85..6ccc024572 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 6d4415c3fb..9878655f99 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 be9abeb1e7..4d83bdb742 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 87078a6538..7dca38f626 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 efe0128fbb..cd4c34e899 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 cc593a6c55..d0c8b153d1 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 7ecde78c9d..7bab9c3b88 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 ac26a4eec6..84438f954d 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 5c88a55f20..b428b97e28 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 4baf8dd217..407c1fa269 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 fd808b3bfd..26679c008e 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 24db938576..5fce971f23 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 87d260f45c..b6be6b17a1 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 239384872f..32e595cb6f 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 a1f2aafb03..2feeaa5b18 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 126dae6eff..8f62a7642b 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 e199267c43..2dfbf7ada8 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 1f3259c0e4..b0dc4fe166 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 143f2e64c9..b2e71be968 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 c2ef3eec93..ed69fb2e9f 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 75ade087d9..c5b2b9a5db 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 aca655f729..5eb38a6d5d 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 60e5d73b63..9d84e96295 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 5913f61e01..f6604dedbc 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 a02e03ebeb..1a60d619b6 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 85849e57f0..2a5020906a 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 14bd56f543..13bf81f94d 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 359bcc3a25..8a8af25518 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 ce3a1d50f0..c62cca0df4 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 6667309a06..7c1f5fe5c7 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 b8ee5e6852..fb00f2aab3 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 b1424b24e0..2ff389f079 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 8004de32b8..4f33ccabcd 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 d5ed456e4f..409589a06c 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 f7deca5979..1c533fe46c 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 e4204a81ea..dd8b5bc983 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 0b279620c0..ca34cbaba3 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 3db0d53d59..fd040ae3e7 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 06588d946a..a669afc108 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 f799269d40..c95cfc247f 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 513cd5363d..de6e558c24 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 181f7b11e5..4ef84207b6 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 3e53bf453c..0923c9374f 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 08144aaf5f..1032eb1567 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 50c7c38349..fc6708ca69 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 5765365ebe..bccd326617 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 d83cd0fab3..b126e1fde8 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 7ffc09a295..dfb562c7ff 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 1121797e75..7cb03284dd 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 7584a75449..02d379d631 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 7053378dcd..847c55aa7e 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 f7387080c5..b1ff5965d7 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 d87f268cd2..98b7e5c69f 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 c3dacb21cb..c484ddf447 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 4aa20afc3d..b18655c987 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 45f12fdeac..7e51c939f5 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 679c157b0d..a044fc7e68 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 92bdf762c9..530362176a 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 0202bd4e7a..1ec33c275c 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 14268ce5ad..bf54d82728 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 a12df4772c..00d665e4d5 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 f7441a7946..99ba60e9db 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 fac46af7ed..4ab60c02c6 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 581061283a..0d432409b0 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 70b51f51cb..64a108a915 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 268a2c5ca9..cbad95f471 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 b205b542e9..199a7df75e 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 e08b774c4e..699b8d0a8c 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 f7cb4266cd..140cea17fd 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 4b38618d03..eadd07bd13 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 300c152e7d..260953a7e1 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 daf3099e9f..f7759303a9 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 b6512aff4d..9bc465fbf4 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 3df7b00154..ea4deda7f4 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 46f6c46073..1e9654adff 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 e09fdc920a..caa9cb15b7 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 57157fa9e5..0f8afbef2b 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 c1e66d95be..81df5bdb0d 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 7915181677..c483610dc6 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 cc408a066e..1a07b12850 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 9e2a513901..db842f3ff9 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 0b0c66733a..5fef0e817e 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 862277fdf6..017fdd587b 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 8d2076a747..6d458296d7 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 24f926bb23..bac79f017f 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 cf544d9a3c..2435eda7d0 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 0f7ebe7a8c..49dd429020 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 664a20cc17..38e7f7edf1 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 f0505a1652..0356992361 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 56070d6b48..c5404b0e0b 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 f82b01551f..f698eb8a0f 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 91923858b3..dbd9177a32 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 3a4fd87efc..08ff9696fb 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 b98faacd53..302969877b 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 6a62636eb5..9c1a95da9b 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 708314e1f7..d2a22b1650 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 013543b7a6..943f03549b 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 5d4c022b81..f15a7bdf36 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 6469605533..3fd8160dc7 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 54cd340f26..2d90e56dc3 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 c31131250c..9e5f6dad8d 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 8d9be112f3..b300fb634e 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 732931d0f4..c5ebb46aae 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 3fed8bb11f..6925be1378 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 7f05427f9a..4ececa7c71 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 79445a2225..94c73966d1 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 9bdfd0e0ba..2faa7d9978 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 4d93aa7097..437c9c13a1 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 1eca7c769d..668640995d 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 d9303cbdef..b7811c89b5 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 9e094b486e..a3895c7f63 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 e062ece95f..1d0557d208 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 f05f17d3db..1b6a712cf5 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 a58f2cac2c..e2ecf09e00 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 2194622d49..9497843cbf 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 7b36d29e57..ab9d80fd53 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 b79c9c0df5..d690cf32ac 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 28d00dd846..d630004869 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 a4764b378c..6fd83bd8b1 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 fbbf41b36b..29a54e2472 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 c3fbb9cd3b..0db3528872 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 0f6dbab161..ce6fc29278 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 6afcecc871..a502a211c0 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 a65ab074ac..0731c0ba59 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 57c2315bdc..59e2731ce8 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 c07d93fb27..02a3a0449c 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 65b1b538db..6de9d14778 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 16e32a7de3..90e8b91fce 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 ab8c32a15e..5bb3497650 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 cfd7f54914..e78b747b33 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 45772ec1ab..27a2e1a44e 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 9f600f6464..3f4dd6eebf 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 164553b371..287b987794 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 ef3db054db..a38c5d6736 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 f2d0dc6ff0..c99d3b4f14 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 d6098f9851..6487a53f6f 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 5072a8d5ab..45b4ab4120 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 88187d854a..73afda29ce 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 37a3552c2d..b01d4a7a24 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 bc89873114..b946aa011a 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 150e07c4c5..4796d0a98b 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 55c625acdc..a96ae5f5f8 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 ec75a76a0a..afa9672e7e 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 5cbd23b527..10e0727c87 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 59b803d332..1d03ba0b6b 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 df79f63043..24d93c120d 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 cbd2ec9d67..926194c272 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 b2b3900f7b..2f2cf6f624 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 95489151f8..8aa0d96c42 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 679095e7d5..babf266431 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 22a7037119..a234dbd4b6 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 c7842f4341..298f8ef629 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 d0ea2c38b6..1da18f7491 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 821d4087f7..2775864967 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 0f9c35ee84..dca96cdd4f 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 f8bb924494..06166eab6a 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 d1c25d06eb..25bfd5946f 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 3d8e0f1709..d969b9ab9e 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 2dc7a74bb5..c045c47f80 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 1d270db877..dbcd739a44 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 ac0b4162f6..7c66e4f5cd 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 6ca15bf935..fa35833f5f 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 50041856c1..53d9b53115 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 aa9493f2a3..721a3fb028 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 cfeb58deac..0665c494d3 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 cacb935db6..1bd8ff7eab 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 ab971f854c..06c1412a52 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 c1975c1106..403d980a4c 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 73d8a9b4e5..a5e409520d 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 da6a122356..048f52fcae 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 70e0e688c2..3045de3aea 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 1b8ad0a860..99fa5dea21 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 53349bb0ce..2bb4cb153b 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 c579ddf451..2240b79ac7 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 bc5be90346..ce6dad34a6 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 14f5be5fa2..987f769882 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 0f1231d01c..35c45f093f 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 06038e0292..b96f1c574f 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 86612a0f24..b33c02e933 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 440aaea1c3..038f455526 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 40588eebdc..1f84c19193 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 2eda0f4217..2fe0bffa06 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 213b869853..226f334095 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 a548d58419..0dd9b7e28a 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 227d360a92..05d45a32f8 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 1c072df5c3..0b1cab6982 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 3cf662974b..7360763f3c 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 2833205b3d..0db86e9d4e 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 0483a57cf2..d32227f0c3 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 844742d865..15499e1b8a 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 f60f69f582..24e1715343 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 0372ff360c..5f9bbd74a2 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 f494e86998..77472dd112 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 a26cc81460..843a2b05d1 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 5647cf6afc..f11aea8b99 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 334fd82d32..e5f694570c 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 c9278f7519..1e0a1d0991 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 e45587272f..5344a140fd 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 793eec2681..aacd7a3391 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 280e4d894f..7f29aa1533 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 b2a1c8398a..a2edeab0a7 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 44b9deb539..be5e88fd0f 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 54d855b22b..9b6f6509b1 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 b78b6a77bf..112645657e 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 2f14a74897..b2db80f31b 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 45ab63e730..968e1caa88 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 478f089aa5..e2e2607923 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 8ddd6dc906..380a7a4730 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 37703cbcba..cec8119786 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 0036f566eb..d9730ad3e9 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 69128917c5..dbc8c6210b 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 e0310e1f04..a069c84b4e 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 26105190c7..240f0c2124 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 1697b8a9c1..d4552d0432 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 ed19f4333f..3e458916b5 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 f9b866c11c..fb4b290979 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 e7047dbcae..78a9888fde 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 a85675f859..f19f219434 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 0b4c742b7f..fcf542f467 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 8b373ee62f..e7a1c97b79 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 bd9c544767..5ba3a34128 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 845e021bd9..1b716e5cd1 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 9c116e5f4d..5e12a886b8 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 e63c503fb7..e01e291c9c 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 c69a0e1b1f..bac444c321 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 4ce63076be..d09b4b4dbe 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 0c80e51d9d..6b81a4ca1a 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 8fc38af520..da5af2cfdb 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 c06b438511..20cb208f10 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 ccdbddf2c3..39122f7760 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 48d87737d7..21c616b174 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 1dca642568..7b5daa6921 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 a2ca2f276d..fc8ee45237 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 f6092b48ec..090812e373 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 aba4d4fdb8..080e82b2f3 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 0533bbf804..2d8dd5eabe 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 02298f004b..d2f2b96225 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 76528959ac..b8548d4008 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 dae25be140..572d29c913 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 fb08250acc..395c4fc670 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 a118bfd630..6e4b25165d 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 65a403b04e..2b3e6df292 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 b8fe9d2c8d..8d8df69518 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 5448405bc4..32b002a01a 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 d6033c62a5..f7e0580f46 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 038d951851..31ef662ad5 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 bdc4498e97..d5ca263da4 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 651a0397dd..67004918b1 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 55d23082ec..664633ae35 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 84c4f1ec83..2c28fef4a2 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 f4b364dfe1..71ff4c3528 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 a89824ab10..c82e3b9179 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 fe84eb1f1e..5bf7a1635c 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 e93a7f2d1a..53087c7ca7 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 86796077d9..803d4db18b 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 4d9959ae1d..fb62a3bb09 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 75d2bdfe61..65502845a7 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 ae4ce012e8..ea6663d986 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 35a4830172..46cba31243 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 726cfea4a2..749abd55cb 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 1e3482cbb7..22fd2ba2cb 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 ffd9b6a7b0..7b0fdd1d04 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 1254117050..486ec14c0d 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 cbf47dc08c..488267abf6 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 7ee5d21d40..2f3350f3b5 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 0e8b253470..64ed428adb 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 0200483232..0fb0f5d1ec 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 759df49397..7b5746be8c 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 ccf5a13727..4baf0c8632 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 1a178d5377..7319e83c4e 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 d07136c484..79e1b6330b 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 524733174d..6d76b4858c 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 15c6172870..0c17db414a 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 148b04893e..e1daaa6701 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 853c42e1be..fa06fb893d 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 eb33be1c62..2d885d17a1 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 6c14ff3ca5..02cc4d165b 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 7906d73164..0e7443d142 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 0956f2475a..0a5d7c8946 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 0cbc91d827..e0b3f47832 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 405b8d1d2f..5361a5af60 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 0a8a65e2a5..e9fc4cc7c1 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 08e536f1d4..9dbed02a71 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 e185627ee9..bda47d2d8d 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 28f69b4608..e5bae84eac 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 b58741ebf7..53d7407c88 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 f56ccb8b4e..5d400dc161 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 05c9cd621c..6791f12b5b 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 4b57b92721..e7bc8ffe56 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 680b8cfd2b..f88383fde0 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 da71e76861..f8dcbe0870 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 4fac4576cf..d053bdaf93 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 688672eca1..2a20b4f148 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 6822ece357..28cb223449 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 1bc05bd6a0..7ea9d2ea22 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 90f6b9bd11..4acb0d9e12 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 13179d3e4c..2bc399a221 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 6f448ee366..783ff71b22 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 8cb3e1dd2f..eb49ce1cc8 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 dd2b4b8275..ffe0d949e5 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 5766ae6a67..fafbcf2e5f 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 c76bdfc500..bac5863985 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 01b7465b3b..c1ebf6d772 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 6065d4ab1c..41a54987c7 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 49e040afd5..8f2cc21649 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 e1ba3da749..4ebee2deef 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 acae04908e..63d4714286 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 b9101deb49..dff8b7c2c9 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 c4c53acdbb..331430c2d0 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 b29b3029a7..9b87af2e43 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 cebadffd88..1b72da4980 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 a88ca76ab1..b607f90749 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 1f60052214..d608000a43 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 24778cc505..e01fc02ecb 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 0690b88b92..f79e16b2ef 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 a40c41661e..8b636c0b20 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 dd2cd4ee34..78d07d45c8 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 6c5c1f96d5..9b3c5a7cef 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 7a2d4a75f4..d05238d3f8 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 996e39c88d..0f68bc2fce 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 782b8a8022..f58c197a9f 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 56be6e81a8..b89180f62f 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 a89f661bbc..0b372d0356 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 beefaca950..a5e68e9d98 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 4dd24487d9..e1a14f48d8 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 eb1638196b..347a2fcfab 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 4d9347671a..f38b6f251c 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 538b889d92..c0c484f6ff 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 5b3e406868..c989d034d7 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 8aaf4c58cb..84a7dcf7cf 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 22f0c0dc11..4b4cf87faa 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 68641294df..c2b6ff7bca 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 6766ce098b..1dce064001 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 89a129bdd2..748c0337b3 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 183f6f94c3..5ec095d72d 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 df4388c2f4..e83f9f827d 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 72ebda58bb..2da5ec4c05 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 b13ba38b01..b9ee06d8f0 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 9644190b90..0d4fe9b7fe 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 50fbb6bc61..8d1c65276a 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 f4a9e757b5..98308b283a 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 3e93f408d2..ce026d71eb 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 f1457d6a77..30eb22c566 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 2edc50e15d..71e6b32d6a 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 4a540b78c2..6b5e5d8985 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 4c9aa23934..0557ee1cf0 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 53e26d1145..27f4023e8b 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 7b36754f9a..c46840682d 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 3801ceab23..cf5e3c9ec8 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 78aa9b6924..1757a26350 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 44db5b600d..e605d417e8 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 103d496f2c..b7f1933919 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 ce19e68dd9..16676a5a3b 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 2cbe80f599..4966e78a8d 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 ea573fa54d..2f6053313d 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 47ff14d509..f2fb7f196a 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 a4e898429f..79b15af8d4 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 5d11db524d..f94c07f156 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 911e141fcc..1694880129 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 df5ca00597..2a852c8c70 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 8d18b77a54..56635920d5 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 166bfc35ab..f47fa8fe62 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 f7a633dd2e..ef3495fa6f 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 e06cef998b..8d403dc09f 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 4e396c2123..35ab23d2dc 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 624478a1bc..473ca0da17 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 4b544ba1b8..239335cfac 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 6048e294d6..c2453b8d6a 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 2c963f19bc..c0e469da27 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 35fbddc2d5..2e60f06474 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 cb46dcbea5..e105507015 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 9805c87162..9a21135368 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 9707610fd5..7a74260aac 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 65312ed1fa..0caf456afa 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 56f1c2a9f6..c880a48104 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 6622124ffa..66495d0d3f 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 e151fb026f..39fc4705e3 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 a1433810de..3e9a8b4c8b 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 5852cdc790..631fb60312 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 8a1f4b7846..11a9671367 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 d390447e69..ebf8debb66 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 62da18d592..4e8ccb80bc 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 9b13007fb9..c8c4305512 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 4d364ca632..55f50b208d 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 1fad9aa100..9531100157 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 b5c9060bab..252f74dd2f 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 d59c25909b..82dcfa3a0e 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 5e55d29d0d..0857cc78c0 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 74cb23f5d9..42ce75e6b6 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 ee425b5b45..6bee71eb96 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 8e08f3372b..17b50633cc 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 6c4ea15d18..485d87c22f 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 37381235b0..f95606c839 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 6e5af48865..99c90c569d 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 916d0ef173..639981aa06 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 ec77dfa897..56d1c14bed 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 91d8c1429b..0fefb7542e 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 bf130abde1..70dfeeba2c 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 1592656307..b489b1d29e 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 6b15e436ac..3bfe92160b 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 b91f2933dc..56c8b06197 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 9832d1bd24..77eabe0024 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 4688c2de43..f336a94cbf 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 7468985a9b..4a042819a7 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 49910f2714..9ff70e8704 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 6a7b89765c..c1f97d33cf 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 27b0228044..ae44c13883 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 1092058eda..77cca0a6e5 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 61da1c73c8..8269a1d10a 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 1e10f64444..1b717e1a2c 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 49d677a472..d9987792d9 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 5769c47f5e..7f891e22de 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 ccd3117793..aafbed84a5 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 348d95568a..4a0016bac2 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 1a1535b162..0ff4613097 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 979524aeb8..f0f00a9dc3 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 bc95320bc7..db4bf1d291 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 9db5b0d09f..2245fde792 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 11a09fb754..998b21dbd4 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 382fef52b2..b9b92d495f 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 5003f903aa..f42684826c 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 73b5e693ba..9b55bef76b 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 60c4c2a56d..e2e636d40d 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 ec6617cf37..2da3cc1626 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 263198d132..bb641bc621 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 103c4f5660..bab3d148d0 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 8205fdf09e..1cbfad7b14 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 621f1eb31b..062abcef49 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 c00b120a93..6fb87c94c5 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 393fdd3350..d1057e980d 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 a3ef43017d..c09bbba9e3 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 399857a594..e5569a7acb 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 a2aa918d0a..840cb4ea43 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 ab5cc7ebcb..061fe0f444 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 93e9e7c1ba..454c978044 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 a49d541c0b..86394cda06 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 e2fd07d65d..7240f5d739 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 db47c849b5..86ad2b331c 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 fd17ae5838..9eb99bb308 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 0d475cea0b..d57ec15a24 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 71ecae4bce..9e55611f8b 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 95a5a766ff..560eaae034 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 dd4363fe77..1421f9386f 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 a37763c383..5fcf4d611b 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 04e7cbab49..83397caa99 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 a9ec29cd1d..ecacb3b169 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 533d41a25f..1d8fe5b782 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 ece2aeb2b2..037294f582 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 96f1ac99ba..6d4c82242d 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 2af4ffff5e..a157055911 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 b1d747e138..db74190362 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 f1bcee6d1e..f9705f1c39 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 b173239975..7a215ab671 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 6b23e73469..1237f1260c 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 04e984a67e..221da7109f 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 f49ce963d9..e9c5de891b 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 dcb2fd406e..5251ee8b87 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 e53c75c3b9..9c427ee700 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 583c0d3e09..93e59ef09b 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 973fded3b7..baa08fb4aa 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 19a3a9a513..9b8bf279a1 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 63f7fb4688..4e7538a479 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 511c0e215f..b335162863 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 090346aac3..d85a87c1cf 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 531d2a0c4b..c51af199a9 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 cb6ad29451..f0a5ab3c89 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 075875eb77..b8a1b9a295 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 878b70c694..ce7d68da2d 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 3c0097b9bf..b97b449299 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 c917f877ac..77489f7941 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 ff0e438089..3294a98219 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 47c8b0b794..3674cb8cc8 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 dd2c267d84..964134855c 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 88f1b8cab9..4e3c23f22b 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 8a709e2efd..4f01ae55ba 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 9e24759191..9df53b0849 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 5445edb63f..437f9c8e97 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 7c1d76d6ee..699a7792d3 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 5f9bba182f..de052a8249 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 23edad50f9..bde2564540 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 0527396e75..1803c7a50c 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 95f08ec6f3..c47aceab09 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 8c442f02c1..3c92bbba1d 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 6916e1b5e7..3886e6fbf7 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 044f4cdbc1..abc9ad65b3 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 395cd8f1b8..39e8725d31 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 802fb5b8b2..c1da03a078 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 89ed3dc6f3..7dd111f66b 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 964cf3a1a2..780760ab17 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 4d45eeb881..7d0bd1989f 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 fff916d01c..b72bc9cc3a 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 3c1491b949..305ca4ed97 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 b9ab1d60c1..282bd9e133 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 b235c56a46..c980201fc1 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 1fb914b386..d5c967fa9a 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 237a340b92..9ad7132a9d 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 7ed19f16d4..88f17b0303 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 ce455101bb..d8047d7c09 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 88fac8ffd8..82485caa58 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 0ed1b3abf9..b70a2637d6 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 d579a54e1c..a169f3d28e 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 6ebbe47eca..69101a833f 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 c505ad5c98..cb62a65264 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 2a2e890efc..c757d58160 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 df33a67b61..ea353e8810 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 64e87d1247..5ea2b739a6 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 ec780d6e40..b030ef1606 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 1cf2a55c1f..8f6e9b8db4 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 36ad6e4d25..641bca9e21 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 bd30d96485..b7ec5fda4e 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 1157bcf85d..146503de5c 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 c91efb575f..8ec8560104 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 01c60df860..55859c46aa 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 47991a643f..9b2f5babe6 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 948846fe68..d799e06f4f 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 87a196455f..0a615c4f7c 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 42fd4faa29..13ee73dfe7 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 50a9af2ffd..c76e2e473c 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 a7374f726e..1953638b37 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 8f00829058..3676e31583 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 51e77df8f0..691fbbdfd1 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 bebb33d7a9..de45bc7ca3 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 f0b8f50ba9..6a43aa79d1 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 60c2d89c0e..6781a81f12 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 be30b6f98e..94d7e32315 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 d4847e827c..97993fdce8 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 a9debfc8cf..35b97d5d7a 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 33735fcc14..e49e5b76fe 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 beba816402..e6963bdef9 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 5343a23d61..32cd4cdbae 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 ca87e03e8e..e3e23ce103 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 01637fc9c9..c124a62083 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 606ea3392f..f35f144487 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 e81013f740..5c7bf15cb0 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 436f9e588f..9e478ce104 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 f66335a056..4db8895ab1 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 5ca8efb6d5..ccfea6e69b 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 dc9701e6b3..94dbf6e7ea 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 c238574191..fe350abb12 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 505206eb9f..072077d9e9 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 7e3a23132a..f7be27163e 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 bbb82ce6d5..46b23bc053 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 66fdced565..bdc776242b 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 0aa1d13a9f..358fd7bb63 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 46a8954b00..f361b04641 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 ea69be1601..f8b641950b 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 95b1ffaaa9..8db1f59a51 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 95f7b78b66..956d52e59a 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 d11d4a3188..0088a92cf0 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 c79f3626ed..03585294eb 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 5ba8cf9ac1..e4fb3d31b3 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 a5f0ed5172..6415f395f4 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 df97a6aa72..aa032f2350 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 a2401243cf..3447c48d79 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 ec83b5c205..4137afee68 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 4e2c071bde..47be2ca544 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 2117208099..66bab203f6 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 0af0e067ae..940482ca4b 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 4225a7ac36..41381f4b48 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 68c77489c2..b8ad555ed7 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 0ce086562a..59f87aa40d 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 07374f854e..4ee24dbd44 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 6184df35ad..41a3ab0c7a 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 9390842c85..f5e93717a9 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 712f251367..2e1d885c70 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 768666aa4c..39ebb117d9 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 3442755b69..33e31bc3ba 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 e47e2bb65d..dcafef54d5 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 695ae05e2c..8d1e530fe3 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 e308a2aba5..eae9c882cd 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 9bd5a1998f..b9c26aba55 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 e26be3de0c..bd85022bea 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 1491ecc3ff..96b5f31ece 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 22a1db1dcc..a4ee3ee972 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 bbe4fa000e..2b5f860f6d 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 c0845df906..0d091ea31e 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 bc60d918d3..a4b1202c6d 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 a8a2b3ff8d..4925ad7082 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 b1e334ef5a..55c234a2d3 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 a1c4d48045..be75b814ad 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 2f0d8f8015..cab2dced12 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 52bf9f8ef9..734cb4238f 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 2e9c7f580e..154beb95b8 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 31108b7cce..e198a3909e 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 16424c0570..803e5ed111 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 3612035158..132037835a 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 f1e2947a25..29057e03ae 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 c056fd172d..4828f6e204 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 0e83c18275..65c0dffda9 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 969be8121e..c448e89c3c 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 fa3552b51e..788e74e995 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 802918b7b0..315bd9695e 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 ddfcd8dec7..eab9ff39cc 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 c58092759d..02dffefd8f 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 9108459fe2..296f2007d3 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 3733d50aaf..361dc103ea 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 e3d4057afb..edc01bd012 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 66ba5e80a3..fa0ef4d7d7 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 5c1e230f5b..47483784c4 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 ebd5a359e7..aac2676487 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 bc5d96f5f9..3f4a949e51 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 6caa42631a..7bfeee4ea0 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 625714c27d..db05e8607a 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 565abc28d5..7a58b3875e 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 a8fb85a082..cc10184aa7 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 aedf486d2a..815099fb2b 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 532d016b4e..760afcc58f 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 bd11eab6db..b2ae516ce6 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 bf08702157..c29b034845 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 faf7a5fb96..e51e80b7dc 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 e12316e2f4..024cc0543b 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 f96b2181cc..f0a53135ba 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 46551ec0c5..2fc9d1ed4e 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 0b0d73d8f0..f76ff2571c 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 f95855e6e6..9aa8bf3ff1 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 3e51e432fc..9c525c22f3 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 0df7f79958..9a3ef986e8 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 5e9ffa1158..f9e894e7ac 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 df4893713f..9417b1bac3 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 b48c811f57..a5ab9f328f 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 3860076de9..dcee11d74d 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 0b21a33e14..d203ca5891 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 7b6c295be8..72510d9017 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 ea391f91f7..204058f2e7 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 ed62ce5a31..74a653b497 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 c2cc1fd11c..b2abe8ad80 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 3440a690cb..54dd198255 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 5a50a59d01..4c7b440915 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 1beb053383..f67b3e8d4f 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 f77f52082e..daadb49049 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 114e0c5f88..9d78396638 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 f1917dd468..4c08650cbd 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 43fdc4b044..55b1ba51f3 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 2a0f17fbe8..6454d9c718 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 eddfb9327d..4bd6f17c62 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 5fa2283849..1edc3c5b4f 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 807eace4eb..111a5a7b78 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 c075ac9d9a..9dd373b34c 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 3bce95d121..39d6a28817 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 4f0028e830..f84a7369e4 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 bfcb5539a8..38b327b7c1 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 224e364170..54efe4c67f 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 81aef3816b..8f654e053f 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 bd2d205b9d..4130b3eeb7 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 42bde229d4..ba00e804f3 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 3a83d7eb14..a1b4d46752 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 0eb30f1c03..8b0c0d5761 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 d09914bd29..e7824bb829 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 a9ef7d59ab..0439f84700 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 686d9d82d0..6e846f6706 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 7f5074134d..f68395bc22 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 1a0310cb9e..d613273120 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 8cdc6fcc33..c7ac42b648 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 02ae6d8e3e..29c2c7beb8 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 945450d431..e68bac2bab 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 fd4c172ab4..42256ca323 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 0024ba3202..ea2a3e5321 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 a80c1d742c..f96ce46e47 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 be17a0e060..6cbe99b89e 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 89b3f67b64..d419e5e242 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 ab56bfb5c2..4424c641a7 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 e8cfc6b5fc..4e555a90a6 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 78d1c67469..ef06dbde28 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 246b3c1ae8..c0233427f2 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 ea4c2b5e14..15c013691a 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 48fc03f690..67768b9e2b 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 bb5ca3640e..4ba07246e6 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 558dbd6186..31749fe6e0 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 f4a35eb011..d2aca80c6e 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 61bc796e35..09bf1ef7f5 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 d26aa2ec3b..2ec440f073 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 2d579d965d..dcb7bd5484 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 ce5a72717e..a5642a8dcc 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 04cdabb72a..8a4624e067 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 a7be9ff88c..8cd58ca94f 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 30465c32c6..a3cf9599ab 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 a5d601fa4b..f07ec3d4d1 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 31143a9dc9..077384b449 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 a9a37b6ea8..2d9c6e8877 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 7c65d175df..72482d17d6 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 ed90cd7641..9363a00708 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 3e05423e4e..502ea57d8d 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 99f38dbe2b..9d8cb5ba6c 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 0818a71588..f933307fd1 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 4a085e32cb..41cd409d0f 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 46a10e91bf..f317306384 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 eff271b3d9..5a5a22d8fd 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 c45890f76d..91f5f4aca5 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 676045ad2e..56de1bbc0a 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 3f7f6ccb2e..f4e708c091 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 d585f5e8ba..b09c526cea 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 328d5a7480..d7626af170 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 b99fd8806c..ff01d1d58c 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 07bdca1b15..16940a7e8d 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 b24ec554d3..9e45bc6351 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 b4c2377f47..fd21062bf8 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 fb94e2ce08..c30d3beb4c 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 87c82c2cc9..0e5e87c8e7 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 1573c37554..2ba2b863cf 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 335e5ed44d..80746ba84e 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 7526e00641..e8d3d88070 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 c4ce39531a..9438b5e182 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 1760be56ee..3c9198789e 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 650d9c7070..5b66751bde 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 e863d491f1..c3497b656e 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 7c745e4268..bfaa792a0b 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 5a82c984cb..e228cb544f 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 db2ac45a79..9b1711498c 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 4ab762fcda..97ad16fce1 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 01da952b83..b0c8ccb57b 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 f53dfa97b0..12f502cc9d 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 b48a0dc99f..1547912f21 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 4c66c64595..4c451a20cf 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 2d78aec0a5..48b52e2eff 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 4ad4d1ac59..2b42b844e2 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 3418a9d203..dc850b020f 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 967ec4be95..b954e9be08 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 c25a68e937..d55df4fba6 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 18539d58c3..ea1c36096b 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 58c62ce7a0..46fda81759 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 619f9ccf56..e88a87d9aa 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 6d6fb1d17e..9a80024b34 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 9c16da6496..b76778f475 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 f9b1f43608..db0307e20f 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 e4bb3f15ab..458a73f0ed 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 0929ec6945..59498bbccb 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 81d520a290..b0dd3d562c 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 cbddf05fc3..2510a23620 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 df6ba43436..d71d0f5a5a 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 f916c33c05..9247ba54d2 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 09b22b6c92..f71bf7412a 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 70f55c9e5a..3e9db0e261 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 01219c0423..c34a6f2a34 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 36984b9489..3b105139dc 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 cdfb8f9a68..f0bd1c744a 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 c155065919..fc41b96708 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 3c12c29908..0e51c4fb02 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 22586bb40e..121307a4a3 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 0473d121f6..587a578e7d 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 8ea4445730..7f7a71931e 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 dd92fbad3d..427c96d636 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 c93fbdb4a4..cb3c6c43a2 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 e7c3a65274..d98e2c6823 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 905e8891fc..e0fcfff21a 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 c61e00c939..c261c2c227 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 9e1dd1a938..defa4dce8e 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 60786c0527..f91a4b0a93 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 393f956d76..cd26be3191 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 0c15feb65c..dc27a3ebaa 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 da7b3eefaa..534bd5c910 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 c2b3422a9d..b1a8b8ec1c 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 89ee1d8856..130e339ac6 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 91da3f9c42..65df19c474 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 11c0753293..55d66ab7e3 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 20bbdd30e1..34bea78fb7 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 d184070dca..71acbea06d 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 e339587106..0025a5f027 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 944ae170ee..82b068f705 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 eea78ab81b..2028f88059 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 9ae37c5979..e93141506c 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 22c527b46e..3870403a2a 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 5b9dfd78b9..494eb07ad5 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 f4f4c0f624..eb852498c7 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 529b726164..1da3c1f604 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 805044419a..ff929e59c7 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 ba0ea24ac4..e4329ade98 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 45c0b5d94b..495fe24c8f 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 0393a75c38..17aa290bea 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 3b189f2606..c8e187e159 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 a244085616..cb3ce3e70a 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 3eea4affaa..83298ab5a6 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 d9173c9a62..cbf10efb6a 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 f6f0e51a95..6a54be457e 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 1e11ede5dc..c29647c1fb 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 ed5da4fd5c..03f16adbec 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 4c9e30c43d..89d6bcd134 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 c850d2716c..e9f2dd632a 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 c8444c17d7..013d07991d 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 fec8baf27d..ebb7bca802 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 a2d15537a4..d5fd085569 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 c5cf83b108..25033684c3 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 1ecac5b12d..c1f1283d7d 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 a9678b4d72..e5df0c0ac0 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 e26f527da2..211382d10a 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 aa5b1ce854..13c7a37241 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 7ca0d24613..0ae65e9913 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 c412ad0976..4112228ead 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 aadfad788e..9c1392d09d 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 1a808c344b..ab776e3c47 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 6c2b7b1c81..72a0fef279 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 f18402e91b..e1eebb95dc 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 a227f99c0d..7e86185590 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 59b8bb9ee4..cfa38ff82b 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 bfb2f3da82..7e934fa5b3 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 5d106dfb6d..961658fab6 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 2f35ce68c9..6a91f0e4ba 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 49a0ca4a2d..d3890e7a9d 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 9e6008a2cd..1095df8b52 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 e7fe4006ef..d77ffe6387 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 5088712266..f323b7c062 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 a72cc916d0..55d905b8b5 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 4c3091cdb1..3aaf70ba4c 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 f89c180377..6e09a73f4e 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 3df185c383..e20b10e7d4 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 997b4056ed..de35516ff4 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 ec1366e36c..0bea7f3b6e 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 9b543e0798..85f61578f6 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 39b3edc7b8..329d608528 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 b7cd8636ef..f6eeefbd2a 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 01885e334d..a27443e743 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 8fa21088e9..4cec1cb0f5 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 65c206be4b..8736595e41 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 7300a43269..18dcce3b37 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 f55f8c0274..c1b5a26b2f 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 8a6f55b4d8..aea691d7ec 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 0777e3a529..051ba35d6b 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 9ca40a5987..1d11ffd9f6 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 f6a989a727..a78bae8041 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 a4edd33a28..38f8c340bd 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 a7242bf192..900576deb9 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 7d9563e7f5..70392f31b0 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 96270a3bb3..23c0a6e0b4 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 9856826b59..fb5bd71ee9 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 5f81d8cda8..aa76893673 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 abeb53cbe9..9dab643bb4 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 31d28f34e2..3bb5c28621 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 70ed54943d..6460e1a5c8 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 971d029b8d..04e770f6bb 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 06657aacdf..ebce30f940 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 3aeb106025..36b620cc36 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 e29198741e..ea2f6caff6 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 1254880af3..285db7a733 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 d61e346afd..ace5c0e56a 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 7d5a355d3c..057bf3014c 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 678622992c..54a791412e 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 a490a4bc9c..cc241acc6f 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 b230b64db7..825258159a 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 a0370e44c1..f4ad2a8551 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 6b65aae968..27e79ff885 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 fd027a57c9..eb54ad4ef7 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 ffef1b917d..8bc548f612 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 395b43d2e2..aa79534de7 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 fefa267601..0542984145 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 d6f142af5f..2f0443825d 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 a46d4b5526..5184b793fd 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 709dd04e7d..5fb4158b41 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 ffc87b1367..b1e9a75d6b 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 e569aeb377..bf72481274 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 081dfda2db..6774577479 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 a4dadaf1e1..cd624f159c 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 26e5053f09..9fc3f292f3 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 22228d1824..4e8f4e7ded 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 0dba2a3263..e276da1412 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 b9efa815dd..36da0d7dd9 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 1a7580088a..e517b57063 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 9bc6898693..a954915e01 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 c04e8e2699..6ea9abd025 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 afe654e748..f2b543df50 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 904c832a2f..493bdc5068 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 85f77a3071..76745209e2 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 5d9be7c7d2..30325ef8c7 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 bd35c81ece..ddb83e5366 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 b6fe3a0f51..4d0e60e515 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 1ae5636f4e..2fb21a00c3 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 c3a46718b1..912d60068d 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 e7fae7b161..36d3583dcb 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 390f964723..8655e3571d 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 4de4eb2098..96844bd851 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 537bdfec72..dc4531a528 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 7256e2bea3..5bb9dcf4e2 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 c30adf69c0..1214d0d4ec 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 890ffaa460..f6e5e726fd 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 0536749556..dca053952f 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 b9caf2a001..03dbb667e3 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 a57f348f98..ed15986ac2 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 def694b113..75484e452c 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 d3cb265ead..128957fd8d 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 64e2ace96b..8f3bf0d245 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 ebf5f571ef..2b3976a115 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 7d0a076679..810ae73a7c 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 8f2a0befec..d5b687f7bc 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 81e327d4b6..4f074ccd52 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 68182ed2a8..c2ff81ca56 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 6bcbf2f1da..9ceb50608d 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 bb68b43137..00156295cc 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 c509f278bd..a36d408cb5 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 73bacb7f49..e74613a96f 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 80397b7748..c3ba287869 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 0e9f3437b6..e5b66ff364 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 4eecabd82c..d63e2c9839 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 d5440bcf40..1ba9974f4e 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 6b71ce46f5..3fabcdba6a 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 fceeb4e781..53fd85c697 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 def1838613..5c127753b8 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 d3e4c77bea..f2650e12d5 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 a003f8e5c1..3e6c3ed0ca 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 918d03c398..ba905c8464 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 332a8f06e7..71a4aac92f 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 89451ecd72..05d8530d29 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 71a6fb283a..33ed5bc9cb 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 96e49ee3be..4b8710d19d 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 df3ab73603..6f1ee1d618 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 3c11fd44bc..4ae4bb7256 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 f80783f62c..301a049980 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 fc02023258..7d9b9bf486 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 4cc8399663..662b5d2207 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 3461a24475..4a446ca056 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 d749da8885..dae588c865 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 e645237270..a332a5fa00 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 d159772ff0..9dc02d080c 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 c5dbde8483..f64ec1e24a 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 74e8b502e0..16685e7579 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 c85577a622..b17258b447 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 2ae3319dce..5f3c2142b8 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 207e39350b..edad604c77 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 9d0338befe..a76bdfe8f9 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 6e8c991d7a..cd61ee4663 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 f54cf30935..4bd903489f 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 e2c2f9f747..1d7ea73aac 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 e7c59975dc..9558528434 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 9326c8bd5a..42e067514e 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 edab73f7db..d5021957ed 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 e9c7812359..ee4561b7a2 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 4e9c5376ec..ceff8516c3 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 e7a84913e3..162a84c4fb 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 3046b10ef2..dbb884a571 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 5cd14cc72a..2bc954f1c8 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 39c1795048..fd393411e1 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 f9f0c135f1..4ba1ba8cf3 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 02dcdca230..3cedd6d5d4 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 53a8feb46c..23ddb34d7b 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 455f288367..1cfa46926a 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 341283c59a..3c97d732f0 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 5939534267..74fd5be7f3 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 159253e469..7e2184b44c 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 4a4a21c0ce..eacb2634f2 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 b61c0fcf39..4e2a6a18aa 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 a7f9465a91..c872d77b3a 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 6f9b4cf0d3..2e889efc87 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 d97b92f771..088b8affe8 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 baf2786042..b44a52967f 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 cd7e35178c..03b0b4cc3e 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 97261b3ce9..4034ca2123 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 448f1e3bda..ef7cc8d5cc 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 45f76e2b48..7afe20bb26 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 1362b48f44..17c9a23a69 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 f6000abc21..e0b9961b62 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 1e79bbd8ba..f89711aaf2 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 22f1ec21e1..72fa3e0478 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 9420035b35..74ba078a99 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 f645c5973b..acfb6077b6 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 680fe05f04..4ec1e38f64 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 39b9a7ede3..270c3b5f40 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 c917396423..390a4da054 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 013470a759..2fa9ff3c52 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 adf862dd20..280610e2c0 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 266bd322ac..6f7acf0981 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 b7d9d3e10f..f0d8ea82a7 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 a7910ac6be..ae363a8abe 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 e9dc385ce3..b34ce655be 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 bbc15207b5..6ca7f89595 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 0a1172613a..3a598c62cb 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 65d7f063ba..ab5007dbd7 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 c7edb4de5c..a872d70a40 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 dfca6e5c06..3235252505 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 0b6cf8da76..d62468a94e 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 8146bd2347..2e07a23049 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 52cffffeb9..f4039ba4b0 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 f8e5ac48e8..ee777ad80a 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 a90583e718..5a5630bcad 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 1925817ae7..1ac49dc743 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 538529c378..92420f8a9c 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 fbeac2b44c..eb9d7a4761 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 1d1113653e..7d4fbf409e 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 6292338c7b..a38131f951 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 36360966c3..8a908b7809 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 134140ec98..2b02d53f65 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 4bf39618b4..2b204164b6 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 b42878557e..002603b943 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 dbd8f4c315..1c2a272ec3 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 c67306c12e..836cbc2b73 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 44ff01cecb..bdc2470218 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 c4a2cefe77..1866a2ddc9 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 65eb6de040..3d23e7c03e 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 8a6ea914fd..dbe318c3a6 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 d21855e13a..52fd9bf65a 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 3ca5c1a0d2..df317855fb 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 1705ea1b7e..f79377efda 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 04fc30dc24..7e60e62706 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 e27c529f1a..2c814d2c30 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 504346b4e0..ffbb290be7 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 337b354acd..2077d30c19 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 250ea0833d..7a8569cfe3 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 a14b9da3a2..c19c2aecb0 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 7fe27a516d..3536f7d6c1 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 6e8bd257c8..ec54ee4d7c 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 4c6dbb11f8..95de497bd3 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 eb7e6ba20b..045a6d73aa 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 f15f2cc6a8..6f1fdb0ea8 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 6573f8419c..1ef0772c56 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 9fbd814fb8..e53804ef67 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 d488bc77cf..e8875aba55 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 8038cf52e5..904b50bc4e 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 855270e2a7..4f22c40951 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 42c0d9dae0..e87ac570e6 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 827b21606d..d361e6e51e 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 4c47027436..7202e852d0 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 7583784b33..27a6f26610 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 960f643ae2..fd13f73fc2 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 2b37bf86ad..1b64bc3e59 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 1f3b80d8e1..05d0d4a31c 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 81e5ff8092..130efe0eaa 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 d234a34a15..54b1852610 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 2aea8d6978..fce55147dd 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 417d20156c..6079e5e1aa 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 9dcea18245..923ffa28de 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 03a1619050..292555d3db 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 57466c58b4..7be13b738f 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 31360bdfc2..945f658557 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 0ba2dc6d57..9a04736999 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 62a3c202a4..0b9ad74067 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 d02da37546..0ec442d00a 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 e08b4121a5..820c40ce7a 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 68b0073ba1..e3db4d1388 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 779c87121c..1bc099af5e 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 ba3854cdc6..a4a41bf199 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 6a09e69bcd..8b5bd38b04 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 e34dd0b507..d6e21ce6e0 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 a73d673389..26706fcaeb 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 54b6bc29ff..d80558b4e6 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 6da5c9e3fe..c6be8e5fa2 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 6a5e62ad68..670145efc2 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 b3c8137c47..3c51d1f9db 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 97a83e0049..48d5d565c4 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 686b32fe1b..3ab253abb0 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 6f55f5272e..ad8dddcd21 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 2ea9303434..bb8067fab4 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 8a3500fcbc..98ccadc07f 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 cba7c1bd4d..8f3fa17862 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 9bdcaee5ba..27b8c968bd 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 def3426d30..7525a699aa 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 b1b3913ed5..af07958af2 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 cd8ee6e074..c54746444c 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 0a9d834328..cd7b784a1e 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 f4db8dda2c..4497b8b34f 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 2e56059b98..f53b5c96a3 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 e06b9131a3..0672589e5f 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 32b7cd7453..3cd622ce40 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 1e9f1382b9..e9423d22d7 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 eec55d15af..fa9ecc7bbe 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 1e18cd1b49..6ba789a4ea 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 3bde9db4ee..9f75c04505 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 eb904414e4..1d21c9ad6c 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 013b3a41ca..1be6be855a 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 9ba965efb2..d42fd6551f 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 363d337869..9e465246f5 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 44ed3b0121..587326a8bf 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 ec7f576bbb..fc755e96e4 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 e784c2d8ee..bf8d8156d4 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 d8f9a4f919..f47a8ca3e6 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 b1a3027d32..11508eadbf 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 e996914f21..9595f51cb1 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 e3efe556c6..a058197677 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 e6b311c69b..7aa4de1d13 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 1147b245a9..1dbd431371 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 cebe893e53..863a329a6e 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 04af4797ba..0bbb75794c 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 e8b57b68d7..cc5795abf3 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 ec8850e7e0..8c6a9e3569 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 91be75cdf0..6a5db2509c 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 4ae27490e2..2afdb6ada1 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 cfa45ddac5..385a4fafce 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 0b6620c1b6..7cdc207025 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 fde379d075..f606dc0571 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 8fa61342ed..c94b5eec10 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 e3bda8b95b..e7b90cf3fc 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 713c13e594..e24e7aaf49 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 d27402b6f2..0cbfc39a60 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 2bc5ace7e5..2fb2e707a0 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 14403af5ef..10205a418b 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 d0f112a479..25f458bb84 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 aaa55afe5c..b2ce6c96ad 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 d3654a3a07..024eb2a2d5 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 df5238610c..c256f4c497 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 0bbf4277a8..940a4100fe 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 cef9206673..86f353f811 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 c0b8781a1f..549bf46039 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 380e3e90b1..4084952738 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 57c2b8878f..ed9abf832e 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 1c61ae05bc..98be185b00 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 c3d9d20d24..9b91e64d6f 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 467beb0c9c..dff7942eea 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 c5950e89d8..24adb418ba 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 1e54a82fa7..d12b0f1139 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 404ce5b2b5..6b8cf400f7 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 ff14d8c23f..7c0a147867 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 b06b481120..8f9fa74e1e 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 c510179280..6ad06b3ab8 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 42fa4f9f28..0ef8a28ae9 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 b53a86d3f3..119803952d 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 37b998fd77..1ebb1f6648 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 075da1f63e..33c2692533 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 a92d1ada44..772446ffdd 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 5f34e87b72..8d9d47305a 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 126ad8303a..29ee7d5483 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 aea0697e68..8c0d56b888 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 fe5dceb67b..9ec781725a 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 0ba4c37786..cbc16d5a45 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 68f4af37aa..04b3e14e7f 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 d64c7c3bab..ddc00316cd 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 3b17df0722..1aaa54d44f 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 b05ef6c9ed..eadf29720d 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 4459641e17..1d85020673 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 19734e73b0..e02f4068d6 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 6b6e7f2a8c..3a8406a8f4 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 b339c99be3..b1be445238 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 86695b9ba5..aa3697638c 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 2e2f80522a..8103660b8c 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 e125a429b6..1d411fd98c 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 035f6aa3c6..b7db777d97 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 a1cced1500..9011183a49 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 ff4917552c..5658247dbe 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 71bf50d366..8a12604c98 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 4f96b4dd0c..089677467d 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 cdd0e4fe6d..af8cf090ee 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 afe2eb8faa..86b3a1fbde 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 fbc5340d86..986f1c3071 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 6eda4f9c89..6ed7bf8fda 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 e44d798ab7..36dc2dcb3a 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 9564bf69f3..2c50d429ce 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 e1baa43d0c..3e118d78ae 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 2553010695..531b68a49f 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 da99bcce8b..e15d7be3d8 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 f648283a2f..e19ea7f1a6 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 e36c4f628c..c6c8c33860 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 3b8ae2654b..64b4ac6bc6 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 b31f98f49b..27cf2a1948 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 8ac9405b2e..a414a34501 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 a307f5e7e7..bb3a523e84 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 0e390337e0..44c7a5d327 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 7429a8a575..d9f966470d 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 ae58f2462b..b324cdc3b1 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 7cc92c81d0..681c1be212 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 8479f94ef1..0f8cbe8b33 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 50e0ea9762..5491146c56 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 b3db03e582..508b391276 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 0a6a91ef50..7ca3438cbd 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 7ca1e58771..3d333d9dd2 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 5ceb46c00d..e447253d77 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 a5988236e8..ba92d0919f 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 6070d72c1f..01999ee022 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 7bddd4b425..5ebc24c6ba 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 0690838bdf..3d6cfc3dcb 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 91697d7c12..d7ca66bddb 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 b675a92eb0..1ee1db50a6 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 7504ecb023..44a5bd7fa6 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 5d0ca9458e..9fbef0f416 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 8e1d4a8599..d790d62402 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 4b21486f85..85288580d1 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 66cbfe8039..92c9e594f5 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 9824c6b3b5..46e70da9a2 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 21dcc2e3af..c22c26013e 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 544dac1c86..416afdfba8 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 49ef1cb897..4558cd663c 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 f9c81de7e0..7bdf89be82 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 4ae138dae0..1cd547f63f 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 05cf9b7c41..e7625af4b8 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 a11c288ac7..67eb78a469 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 e206b39ac9..afc07b309f 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 d437656de9..740a3af21c 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 0b3d4e37be..a06ac42494 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 88f2a5038f..dfe7a6e363 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 3aa3200f0d..1556954098 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 5dd3401745..59d554acce 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 c44f80ee1c..84c28e36e4 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 0934a61ff7..bb7be94b4f 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 2d09dcbc04..132ad237ba 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 2bb44842b0..b89a9744e2 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 e5d5fa7326..970e47336a 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 35ad40bed8..47e8e8ea4f 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 17326e1f58..380790d03d 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 fce27df767..7627e4d2c2 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 7e3e118587..6bc54f0848 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 b7599ce41d..b6a2bd90aa 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 2932d57dcb..9cfa1c330c 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 017711b70b..4b13a3bebd 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 8d15f49ee1..0214c2e29b 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 dbfe3803e1..99a2f85000 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 c9b800541c..338789c1ef 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 caf30cf8ef..b5aaaee10a 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 6fb4def4ac..bd7d009c37 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 9da2506a27..0ccaeff8d6 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 353fefa674..5f1eaca95b 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 2de33267b7..689c893b50 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 b8321484d8..4eadd3c0d1 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 9f6b8c9356..ed71740e6a 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 70eef42a37..fbad4b1f96 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 0dbd56fa26..b712bde041 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 5c369c2dd1..bb01730c88 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 45d4e8a07e..d87a3766e9 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 81a318b773..4b21361e51 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 3c7069e445..88d8182db2 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 cd6ab33715..eab555b447 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 f248dad83a..34fbf2ae11 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 3eab5129fc..9c845dbb8f 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 a04c2e0797..6e8efcc333 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 b640e0ae5d..d92f5c3305 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 39882d3b39..072bf3b74a 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 9896f2015d..ede499331e 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 e61c017ce4..14f50cb632 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 88d889de5b..b56569b021 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 c108329880..2d9e65c8b0 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 8e4048367f..fc8152e942 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 00d57c8936..1decb2552c 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 70cbefceac..3c6257452a 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 946847cf79..2c6c347e0d 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 3e34c528a9..588cf948a6 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 666b829dc5..6bf4b53733 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 dac335be07..6b0847ab57 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 bb4f652b27..e884a4be66 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 a1db8b023f..3f4ee804d0 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 39773f029d..d5ab25247d 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 6cbc9d5ce6..96a8ba87d8 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 3e6c759530..1b6a97cfec 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 9c7e88ef69..931a03316b 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 4ab4a57173..910b418afb 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 3395393d07..aa174779b5 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 d3b0f04713..37e4267efb 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 2f16b55987..ba813121ae 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 63201458d5..f319cfe6e5 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 c0a9ff77eb..6eb16bee6a 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 1e3ea41c99..c78a22adaf 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 45140eb4f4..f482d5d297 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 cabebee58d..65fb5c6758 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 8a77850b3f..8dfb6e484a 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 88eb4b1c78..014a489e0b 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 3594242b13..7b1a2e7aea 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 b76e0c1730..ad8d012542 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 771bd4d4a7..3bd773eea5 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 bed44c8902..40b2e87579 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 8b2311042b..f24a20630d 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 cbcb8b3ab6..d4bea8ded4 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 ae62420e9b..90c1fc8323 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 f0c1619b45..d54148407a 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 28b96bbd74..86e8861f4b 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 a0fb2df9f1..b0436a8033 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 4af111acd1..61d7af7cb7 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 d32dcc9293..c4d622c05f 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 ee6b74759a..55264b3a96 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 cc636a9163..e898c00da8 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 fa3f193861..c56a638eab 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 ff2d50b0b1..085830d975 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 8beba6bf7d..7ef08fe49c 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 c5201ae1aa..24f847c21f 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 3631dd2a4f..8c910b3869 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 63071d464e..f14a4fbf3e 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 e631b4021f..2581e28026 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 dab2f0fd0a..d7e02dcf03 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 bb477d3d1b..7f952852e5 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 529d4f36b0..cb8f46df91 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 a41f274344..db88a85977 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 fd5d6a65a7..5ce330c325 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 92d9595273..3afc52bc3f 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 48ba378672..8d5ef7226f 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 65ee73a41a..32bd072c83 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 6c122a2cdf..7786f4b64f 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 ec466d6285..2aaf3f15fc 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 4776985be0..4b36ee6a89 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 cd3a30f7a6..c5b9d68e9b 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 8fb95f5951..25ffa551dc 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 c7d011e15e..13d2cdafe0 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 3a88d6425c..55cd59bd64 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 ac5a40a5b5..ba08c73eed 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 0224e38cfc..4d069089bb 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 f866f8813a..ab3e81303d 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 9bb7b378c1..9f5c50f4b5 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 363dc7aaa7..5b1d19c814 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 f833a2fc3e..b34a6a164a 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 995fbfdd3e..c9c8d4a3b2 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 d3feef94c1..f5651d56b8 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 d702abba8f..72d41c9373 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 a583ccd7fe..cd5bb4f403 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 6a212cdcce..365b7faea7 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 c9e10167ee..79abe522ac 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 d693424d0e..5484ca22a0 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 2c06104632..d3110e25c4 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 d6edb52fc0..f3de0bb4d1 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 5ef8d5287b..108fdb853c 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 ca28fb1165..e809609291 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 bb1118bacf..0f3920bc70 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 a6f1560e7e..afde30e850 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 6fe5d749b5..46b182aa08 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 264d6528f7..0ecdefc000 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 6c15e18654..16a89a8d10 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 77cbbc2153..4ac223d58a 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 4cd3c799f0..08be429280 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 bcc47f35fc..66ff457fac 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 f11e072e88..c9a21c06ef 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 79b942d2c3..604c2ef596 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 2d519e88c4..9b69b19e20 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 aafa8961eb..a723c9b462 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 592823eb65..fa3c7390ee 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 764c3d63de..b06a999196 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 73b60808c0..244c19a7b2 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 87cce1a48e..f1167d8ae0 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 37aed89d24..3eb8553ed8 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 e42e490dd7..abae7cfd28 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 bfd5da74d1..99da340032 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 d389f10e8e..4b956e645b 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 d67a742cc1..f197a8066a 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 89e912ddd4..632191a93a 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 2200a963f4..210c8eb7e4 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 fad8574e8c..67d433eb14 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 396299402f..3ddc158ccd 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 a576f77457..eb2886fbed 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 1437568d05..16f58e5b5b 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 a77bccaafb..9c56adb2dc 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 abaf773c28..38d328a00f 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 fa38ad343b..eebf802aa8 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 257a5ffead..0cc9baa0b6 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 c23321c71d..e2a3727b6e 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 db1808d92a..51a64e1be9 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 64f7d2b304..ae2ff5f2d7 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 6481e05679..7f3fc405b1 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 dc0b912099..13df7e4f9d 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 d26fbf751e..b656f6c433 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 64c442c171..00881cc20a 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 6b599f5be0..1f38452084 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 18dbfadb93..9f291a53e1 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 10f7868036..27d1299aed 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 ac26def067..7407e6884e 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 83c163776b..802c7d5689 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 2e1b203a5e..1854935b2d 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 45a382c7e7..76503c392f 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 d6dfb323f5..3edb0312d5 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 44770807db..2d0b4dc4b3 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 83153f48e8..38155eb808 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 75f6fcc451..a7911199eb 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 6a62460165..13e72542b8 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 d4323d726f..4788b46b48 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 fce280d60b..6a7321dcfe 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 d4869b7a8c..8862e9e5f1 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 bf0c068e67..d1ae0ebd33 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 fa34a15cfc..e51daa4d96 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 80e436e5f5..b12bb76f1b 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 531aa7550b..d436dff918 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 c7d6988da7..deff707d23 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 a9d54b2dd5..3e44e79325 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 5b7f3e73e9..98eca0bcbc 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 c10a1fb0eb..84013a7ea6 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 7d43cb836b..210ce004ac 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 8fbc624364..28b33e0ac6 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 a56d3cc831..b5f0206631 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 05b0038d42..9dece5f482 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 39b51ab926..b2f619c2c1 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 2826251e84..97a4c8dcff 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 96c69999b4..105dec5bd7 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 8563b9b2b9..2042ecabed 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 88ddc7d928..027e646f76 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 83c365a5d9..e7b094449a 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 6e24767a21..68a52ed844 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 540197841d..29e83ee500 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 72699e9e89..3a47b2b142 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 3c3e8ac6d2..f9d4d0910d 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 c96099bf8b..00bd032fae 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 233bc4d599..b0bc23e7c8 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 8ae20b5dae..7796c7c63d 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 fa4f7bf9d5..c12c131af8 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 2d9f161d54..e2a908b881 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 950cdfcb7f..c150351dea 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 6970bfa1f2..dd1e80d1ad 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 c0f637830e..9f05c213c9 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 869bf08459..bc11f05195 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 29989feb7b..74b3a3bff8 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 c94320fb4a..a220d1efbb 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 741bb69d44..3f09d70c51 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 606841c540..bacef4f64a 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 254ac94539..81f8b2b4da 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 9c5289acf8..fc64a86e40 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 d6915f1ba1..4b01bd99a2 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 7134ac093b..20bee595e9 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 259842b361..d11524976a 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 08ec97ff93..74df14c850 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 651405dfaa..e4cbd9c2de 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 4ce6a43193..8201a47d29 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 1e573f61bc..2dbf9fa3a3 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 94519f4e79..eceda83559 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 3be2c443a8..76ffe2721e 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 fb91183024..9b79f58e2b 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 9e5834ff4a..5037d0438c 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 276dfaf7ad..c6132dfa70 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 73b07dd2d1..2e0f1b9e79 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 9faadca900..71f8186154 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 f792b4ca46..0a78c3d2c5 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 182f9a1f0c..2e26009241 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 431c3b4750..c53cec46ce 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 637d2c2ad1..cc0229e274 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 15b07839b8..c69f99260c 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 f075d0065f..29e72d1519 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 1553b728d0..5d8cdad76f 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 1f9054e902..df2545f802 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 7f63b16a9a..3186bf746a 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 3cff0ae45d..7a82f50a0e 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 33da1a3b62..055fb09fb5 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 22a3507974..eb48f73828 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 5fe48d198b..da1699c7b0 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 e5dd71805b..f06e14d6e0 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 ee5c0f73ea..dba030e8ac 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 756b46c5e3..e8d3d84c32 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 185853045a..0030a50b08 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 7838f15a3b..8e35054c42 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 8ee787c01a..d74d7094c2 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 2add918749..5a20ea35f8 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 52814e0e2b..6d207f3788 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 04437824f3..9e02da9658 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 d762e4308b..f24c0fcb2f 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 a68c8938b3..df6a5bdfd7 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 9d6cd321e3..9b27934325 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 c74e34ee62..9902f53be0 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 49da23f650..ba5116811c 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 59de0a7142..b3cfa5f963 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 bb4e4542a6..68dfcb4058 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 c31ec92580..51d33eecc2 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 c3aec4485c..f1ae287289 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 03d159f764..90a31628f6 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 dcff40eeeb..d81bb94887 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 f2908d90a2..c220dee770 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 a92510dba6..27e4f5f09d 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 39e0cdb488..dad5842d59 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 769caddd55..dd49aec5dc 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 385109ab93..393e995b75 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 082a7d4039..89369d8ae2 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 0601692bc9..5454503098 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 8682599ff7..b3cbdc2f0e 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 e7f4ea0db6..deaf6596db 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 357b9c71c3..8e1d055041 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 e75742c1a4..74cc980e38 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 6babb351b4..c221e9f67b 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 e5bcb7575a..4a49041f01 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 a3d4f9f504..9bd683f5ea 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 73008f4cf7..fb49d3563d 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 d92c9cb0ae..7b9c4346fd 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 ca97067b6a..9e8bb72b3e 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 e54bc23c29..9eaf6a702f 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 93737318be..b277c11f99 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 ef24582486..e0762a3c68 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 facaa0a374..a0df8dab92 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 ad09e2d114..56db8c5454 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 34c945b667..a45ed6a851 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 bb0e064f4a..264eefb47a 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 f9a6a04895..a06b14670e 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 38fc880c1b..6e16c740eb 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 ad9e8fbfb7..efac440806 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 dca0cea2ae..d084a2ad65 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 473797b1aa..f047005218 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 23de0eaf84..5db9438679 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 342f56c0cd..b9347ea1e2 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 6dba50c414..ce06dc3cbc 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 df559d86b3..7e6dc4438f 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 bcc1f5d232..b44e4b4dfe 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 20041f24a7..2aaa9a0311 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 7b602d3b29..975b948c6d 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 c55e4befe3..e0c70ed108 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 97ba39c5f8..d1274aee84 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 d8b42c7d0a..d79b8398ad 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 6a2130a984..717623f30f 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 aec7f94e10..0dffd85ddb 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 89b1116016..76c7966dd6 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 3aaa766ef4..eb5d484043 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 744cbb60cc..b76e00960b 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 181a3fc40a..28649dfccc 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 389a7e508c..9e9b4b6142 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 09cded978a..7572183fdc 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 c02bc0a5bc..a2a647e54b 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 84e6666e67..07fcbe9a1b 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 f8fc4bc773..4afd50872e 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 8696356f82..9d4e1c1c06 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 5e7604d882..430a5d08d6 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 11378528f5..0407f5cde0 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 b9fdcba8eb..7f00219f08 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 b68248fef4..577ac613ab 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 850ef57359..f9036528bf 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 11dd52502c..4bd35d1554 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 b2f812efa4..59d63fb6d2 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 c6457a1df7..0b99556c8c 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 fd9c897844..9619d4bf5d 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 f1e5ee2a5f..0b6c007942 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 992b08b77f..5bd98ee4d9 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 85a98a8cff..89316940f8 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 6670575bcc..b418dee660 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 63f5af42df..d215699cbb 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 932bd80d60..7f1c97ad2c 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 942aeb84f4..ca4c8506c2 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 addaf8a18e..bd539513c7 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 f66999a042..dcc0aef1fa 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 b863d98e7b..529246a7db 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 0644eba348..243c119031 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 a98086627a..76f86430b0 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 efb14a4bd7..98c04863a4 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 ea811ce856..ef5798c361 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 8c1b441e53..dbbe7c1d2c 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 dc77425a34..bf2697f03a 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 1cb170f15d..4087ba8c25 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 bdb30f44c0..8233b657e5 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 61bcbbb4f2..3bf85381c5 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 08c3ee4509..8c679a0f0e 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 5cff0606ab..5bec664c87 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 c88cd37ad7..af20e25aa2 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 266e3bc146..4eb66fc0e1 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 a9653ef349..e4ab7afbc8 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 cfb4059cf7..e8d22578c6 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 dd93b069a0..e6f1ec0333 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 eb0d04f2ec..1ebaf0ed0d 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 276d3ffe1a..540aaf3584 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 610b49f944..0bba5ad471 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 512e966cd7..0bd5c402df 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 32f271f469..7bc6c86136 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 f32a5ca447..0443bc6f51 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 d79d9dbda3..03df69da52 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 88d28a417c..476554c942 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 94385cbe8e..2611610049 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 9ad3677450..7bcb9aae05 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 67e4e4f1c0..624dba1a23 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 1e4a75baf6..85f47ff900 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 f3410ced2f..c145ee2cc4 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 e33d336fcb..e989f103a0 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 6bbdc28b27..84628f7451 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 01eff90ff3..e48458ea30 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 4171c28001..d94a8f5f92 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 3b80026def..9cd92efdf4 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 f7a9e0de6e..cf3824d9f9 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 b8112d8bee..8e1bf9af60 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 c0c263a7fb..b697f44594 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 e01b40af4c..0875dd0f66 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 208e824ef7..e45eda3aca 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 10cc568589..5e2c12c314 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 d41ef88c78..06f9b310fb 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 021c3c46ee..4de3d4d36f 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 47dbd5828d..b123ac14aa 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 065a197449..9a18a968f3 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 64f5dc5515..cb9641f488 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 0ee695b516..49c9e2ea74 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 3b521ab30e..6677032602 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 2a4e562076..e436bffd35 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 fe3d7ae16d..79d64715bd 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 24a69433c0..5b612d5f2b 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 6a87b7f9a2..e673203ea9 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 b09c9a7010..e3c01f661e 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 85939f1733..4d0902c628 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 a385691f78..26dc8c45df 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 e1abb0a838..c714bd5673 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 c4202338a2..849d0d395a 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 f917bfb327..492a5f0e40 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 28afb14ebc..e915c5fd0b 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 5f806d587c..9e3065da9d 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 c52c041d0a..3a76cea9d2 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 e33fcfee04..ade3789891 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 0dca7c05ca..38706965ca 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 98e81d50d4..50fca2d73f 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 7ea524d738..d5c275b845 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 8ab2d7f3ee..9735c9b094 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 0e00253ed6..eb4eec86cd 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 20a5d52550..7a48813895 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 12c5d27774..eef20363b8 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 a4613dfea2..502da81afb 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 3240002e6b..3336ad60ff 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 6d70e47d87..d2b995affb 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 8786db507f..4c8f209440 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 ff091fc211..4102d47c94 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 5ca7a3bf46..86f5e3744a 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 b20c2d4073..74454e3f92 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 61a7fdeb69..bed6160ef0 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 6b14c25b99..1e399651d4 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 e71159fc80..e577ea9f70 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 2e92983ee6..d5ed3e5724 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 cc872c9b13..38ef9dce59 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 407738360f..59be0be3e6 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 afc5d5fd96..6dd0db947d 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 070233aa20..3b58660f82 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 ab344bd8d7..29bd0bf3d6 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 6a8b7e6218..6f1a0701db 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 3e6dfa93b0..0c1825df17 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 516af2888f..3c41b4d44c 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 98d389795a..303e7e5b3c 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 550abed3d9..328957c885 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 df83e72ff7..4311fb2f7e 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 989736b440..5579a3a41d 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 ae1687784d..43945bb6af 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 e70f27ca94..6134b6729d 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 0bc1165629..709f83b6d6 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 451415ba6a..dcd8ac5c0b 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 16e2ad222a..97e3668991 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 8ad1bc4c6c..ee3aebe221 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 e3a5fad1f6..a78d4407bb 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 83b154723e..6ef5b5bf3e 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 3340eca0f6..a752d9ee1b 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 850eeb7fa7..bdf3b07e4b 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 bad63610fd..6e460dd47b 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 48a74bbdb9..b0d9b4fb25 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 e5d5e15426..c4a34afbb1 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 2aeba64d15..8ae730c024 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 823dd5694f..4c88a6a46f 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 1af26f4a9e..53b256220e 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 da4f286ed7..0eddcd8088 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 cf1b1d9be3..d903b949d9 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 a019d32a09..093a1efbe6 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 b31428273e..40e80def20 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 bd4fc6dfdb..15eadf7f13 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 4db0f2e013..9e3bf6aab2 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 d91d61f135..8daabdb111 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 2d5f5ac8e7..9b3356ae1a 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 140c06265d..e20c0ac7d6 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 92c7f0129f..d35ac9ffc8 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 d789267377..70cdd6fbdd 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 c66448be3c..939e57564d 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 61b34d24f2..09ea2f0c29 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 01613743eb..1aca639095 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 2c6ed6de5e..2a7d72337d 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 8e59e6f433..5eb1173219 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 73c7cf6901..568a96b1e7 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 99caef76d9..dbd4019499 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 acd666b7cd..311bf65f8a 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 bb647090fe..a1c066f253 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 e34b94e1d9..ac2ad2c686 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 17866805c6..eeacc8c5a4 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 c3837c645a..67ad6c107f 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 a3924a4875..d9b57e11f1 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 7eed7a3563..14a061d818 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 c6f4c5505e..11a19fdf81 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 309412e827..3957113b93 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 7c0d8c53c3..c3d2702633 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 dcc4852b31..f0013e7ee3 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 ad06e6d865..ed26e49cc3 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 6c4a3acb8e..538e2a57ca 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 e87b6d36dd..61cfd81f86 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 20aa398e34..8aa0cf2687 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 7cf9c77d1a..2229940cc4 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 b5e95a1255..88f469bb3c 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 fe818dccef..fc4f0001e9 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 a2690aef07..32e88389aa 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 125dfae070..7a071aef12 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 e827de3708..2fc5b9fd38 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 4233a01dbc..568e752aac 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 d5f1891137..d95cbf49e2 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 2031886c2f..695c5dbc7a 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 30cdcff94d..b0e13ec853 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 3d1019e8fd..9eb6997c2e 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 958db159c3..1d36b17546 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 2ef773f9c1..e019a19a05 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 e81b4021e5..3e6d926b5e 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 e25aa41073..63a217e6c4 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 20c345828f..8132a3f804 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 9aa4646437..77742613c5 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 e6c207dcdf..48461f6cfa 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 a1a3979444..578f54eaf5 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 432a18d6c3..debd002d10 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 b15d3dde76..49cef095cb 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 c676368f25..c5b633edeb 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 d5fe4e0577..158e9309e8 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 3f87b34759..12a4dbdfb3 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 a822baa25c..461735ed31 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 e6d78c6dbf..2847a53551 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 fb8e3eb420..d1fd815a79 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 8173432a62..f68d17d010 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 f3225f7302..cbcb5a4334 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 a8ddcae8f6..b2adff0611 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 c9cd95376e..c971052be2 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 5c54e51490..3307d73152 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 d215fe6782..798b3aea44 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 870859aede..ef0a7d298d 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 2a88088a1d..939113efd4 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 e6ecdfcce7..a8c5712fde 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 46e1954602..56d2573b0c 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 8217b9725b..1216d411f1 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 0a6606005a..7bb3c97ddd 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 5b79cc2e3d..4205f5d358 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 64edac17c9..3b28ad1365 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 c9b3030963..c979666ec3 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 08b736a843..fc00540fe7 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 c8ef01f816..6eaa74cea8 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 964dab43fa..fd5e366c52 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 58327177d1..44c4860cf4 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 4e222cca20..9021cf065d 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 08948074ef..c8293f9533 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 8ff25e90f9..cf8b7163cc 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 086f82d097..bcdf7c9ab9 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 3ca92022f5..cfc4f69333 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 914aaa9019..d9f9356dbc 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 a5518deb62..febc46ec2d 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 bc4216b2ef..346b5c802c 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 23b2afd995..b019cd5ea8 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 8e6fdd9cf9..4259f3d237 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 ff664aa608..193794efc1 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 314fd4d4d8..b09050187c 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 3d8bb17b34..f9201a4f2f 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 a443e91e33..2b22ff1c15 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 ad6e089de1..bc9dc1c60f 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 a5b3908d74..99bc1a98bd 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 4bbbdebb50..366e35ac59 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 2590b44f46..315a13cd37 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 e0e2da4667..7ccd47cf7c 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 919a926cae..a106dfcaba 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 6a7ed07464..b299df5337 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 b4aacddeb6..ddf61d3e74 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 38cd7ec00e..d0f5a1b481 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 58ef9d37b8..4ef94fda1c 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 c27a637e50..04f7cd6dda 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 c2471e02a4..7bf249d532 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 d3a2719b17..aa464274c6 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 ed44b25ab9..ae3fe3581f 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 f355db6d46..7451b134fd 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 7805bac63f..fbfe2f2c55 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 74e1738ec1..40b87b59db 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 df0ac42a2d..e6bda0f6cd 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 11bf8df944..1bc9ba8438 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 42cd8fea8a..5c53fae83a 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 c740b76fea..f567e9b3a6 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 638eaace7c..aa86749ee0 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 06cb69ee1f..56407799d1 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 8ef2f86791..2c45dde54e 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 31760e04f5..186298b5e9 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 b8341f053f..fc6a896c31 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 2374c8a762..efc2477741 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 8b0e8f619d..4241eac237 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 489ef03f7f..fed6646058 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 5965595391..64148e7de6 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 292303a597..50da99e33e 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 83a2a03f81..95edd1c540 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 78a8117cd3..8147d1ebb9 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 ffdb2f829c..7b1bae8ea7 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 70f7967451..36c88164bc 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 37e757f094..2fcd272ce2 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 2f787db990..7ae8687351 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 783d4dfad5..c4b6dc2a02 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 e85e545139..d919438769 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 994a1b480d..68b2bb80fe 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 3be7a47977..5994b0c2be 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 7edc463ed9..34687132af 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 259ae84bec..e2907f2835 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 11f743e118..acba1e541b 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 4901ba278d..d701a6c7c8 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 1f7271b2d0..f5a81d5e71 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 47b843948d..98f0a3b831 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 7ffacb317f..e3dd75021e 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 ad40ae38d8..5c47e67ece 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 e06a7e12b9..1681bcfcda 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 8319f3df20..f0a74977fe 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 9e4e8762fc..be8d1c5477 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 7c6b556261..1846a31e7a 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 317ee78ec4..c5283e2ef5 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 9c75b0c287..2c7205f682 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 1c8d386080..b41ac2e4c3 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 0e0519810e..fcff80c8c2 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 081d9018b5..f5772c9596 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 0ccb4978cd..1690384a48 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 14f21b1868..822b821837 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 bc580beb89..a01b0da9b3 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 369d7c4336..2876064fae 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 500c08fb30..d24912269c 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 2432445a2a..c01609b11f 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 67c708cb30..56fb418b09 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 2994902fec..c0a001c9fc 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 199aa56082..31710fb3a3 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 7feec64ccf..81c553f05d 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 078f4f7777..58992e981b 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 a63b52e9a5..362a163474 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 876ec45c52..8701c49808 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 69ecea8f9e..58ef72e0d5 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 0c26c35a64..79a3cb2c69 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 8d6b4654b4..08969265ca 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 2329664f5e..ad8969841f 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 b9b9186781..0ddc32e75c 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 7bb8a691d4..5719dcf78b 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 db5feed890..dcaaf2f0f4 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 04fb406dad..bb4eaf44cb 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 52addf7ea0..807203bb8c 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 6b09411464..deb6c5e1ed 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 99ab028218..e99ab8abcf 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 f57a9d09bd..fc836639f4 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 77ecef98bb..77284bcb60 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 c541b68db5..0a4bd6150a 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 317ffc2a88..2592cde90e 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 dbd9346f43..459b5d239e 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 0cf8c0ec76..047d3f3c0a 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 c410ebe248..8519059ae2 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 d29445460f..565898c1c8 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 3c7c9e288b..0354ff2ba3 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 f52684a82e..0e3a6e4e0d 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 a32b2d1957..2ce11223e8 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 3df020a47a..47578a0664 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 6d0ce74986..5273983349 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 53d7851b4a..0ac2e77bed 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 9fe572ed4b..d6d0f00af8 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 5ae2db5c58..9e36818903 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 a3d6f8f90f..02036a8163 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 c6610fe1fa..e0cfefcbdf 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 4b0460c282..37e00b5702 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 85604efbb7..d4c74ee207 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 eb105f942b..4c1f80cc5a 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 494b3a9869..d2331aed2d 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 c702ed508c..b508bb3579 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 847416192b..de31381cfe 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 393acde6e8..6fbe67ba4f 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 db998b1a8a..782af81769 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 f9cd2253d5..642fb84a73 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 d53a1c2c6b..ce7107cd7f 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 1bdc7b9d43..98c72adafd 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 bb98c8a590..91529dec53 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 4127f5786b..c5ea454c93 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 0c0d278300..83d439f3f9 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 f3a29c02b5..c539e5311a 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 61566330b5..8aebe12d9e 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 06ee6d1d6f..86f1b32236 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 2796d6eef1..7566eaaa5f 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 499c7e3ad7..a42017b19f 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 96b5568233..52cdea7aba 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 f62d0f5152..a1c29c3c5f 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 5bae58be0b..b14474b131 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 f54e331ace..77bfe51c4b 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 64715fca7c..d8a2fc7c1d 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 d300de5b82..521fc2892a 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 d73f83c9d9..42e3bf531c 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 6229de9a2c..5e1b81d233 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 c20fba126a..3e65cac1f9 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 f8bf6bd4f3..38869330f7 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 d54c2df29f..9d2dd9800f 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 19fc43b822..53c1dc2541 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 5ca38f6190..2623337247 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 e28447457a..3b7388f533 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 da911640cb..d3791ea9e9 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 7e48493f3e..9e4c034adc 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 d2b1497edd..9294c7069e 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 4b745beac2..8f8a371ad6 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 3ee5676d79..01e9915b93 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 882c15fbd8..b6837f5851 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 32870bd3fd..26803b1083 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 4b7fb9e372..c0ba2df5a4 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 4fbb7545de..a458f15cc6 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 13b92e5b30..6ea3cd335e 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 ac5c03b1cc..b649950d09 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 8f36ba72e0..445744e398 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 888de93c01..204554d7e5 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 b7f33c72fb..d4375274e3 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 6c668347f7..128c3ecde0 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 03d1ecd634..875e5cd667 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 1fd63a2db4..6bb7e17a89 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 a8041d5754..267c77b778 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 b77e71f70c..32f8e32c7f 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 659313a212..015553accf 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 f25c84c826..697f80ee97 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 bddf2a9eff..7f53300575 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 99e618870f..56cf98f6a2 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 142041b78b..9dcf3a7d75 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 f8d9bb0230..f0dbb07953 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 12d3a821d6..23ebd8d0b4 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 dbcb0c9a01..85881e6465 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 d9e34bf6ad..b0bc3dac13 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 3dd76fdeba..f40858833d 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 d479918dde..f8a3c1f7f9 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 8a24250b97..866118fd29 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 46fa28daba..381e84c5f8 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 85a9b39c01..ff55773772 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 e58f919d2f..38f619198f 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 b1d9a2a33e..2069354742 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 3b59254089..47aa0e0e10 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 13bed7b191..f923496eb6 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 0bba9ebbc1..20e57c10c4 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 0684923ce5..fdfbee72b5 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 35755d2913..d17c5dceb9 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 c70e86f701..9f6b555fbc 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 1a13d61ed9..aa0b2310ec 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 f5a21486c1..4643c83e4e 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 c32cbc89ec..e35e30c5cc 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 e8a01d24ab..18aa7c6159 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 bddae377db..1005f7a3de 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 4d375ecf19..079b72eb9f 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 c7dfcadff4..ca35e97388 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 49b13876bc..6edd953910 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 0d803537f9..b392bab254 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 e4d2547b4a..2cfa62d507 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 d8afe277dc..f42a024c23 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 410a102e5a..d5b1dd8f42 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 33a2909ca2..6cb4db8088 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 67b529ede2..13d6baee3e 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 bfeaacf53a..cdc8d3611b 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 9a38df1c92..c98af8a6eb 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 b68e07bc0d..5ca922844f 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 e1440970e8..8035039f21 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 aca7ed9832..ffed4ba59a 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 e894a5735e..62dfc724bb 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 e9f24c48af..16a189806e 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 0e28d5d60d..d0262a09aa 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 98000fb6f6..c61748c76d 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 bc6c656f05..fb76b08f4b 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 34c22da61c..da86db5edb 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 ed21bbb24c..e09cd10889 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 e23f8e715e..1cb4275a7e 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 36cb414275..e34c8e599e 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 68037c3c15..bb1b0c3b40 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 ad74e2b089..ef70bbdfe1 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 2678434f3a..0feefea110 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 d40c013b9a..f18e75a41e 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 9bd1ea4238..0a8cd7e2e5 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 6dba72b6b6..74fa8e954d 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 a071cebbc3..4f222d51c5 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 c0b51d65c0..c26a4b41d2 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 3d4990601c..45606301e2 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 525b20a05d..119edb4bb8 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 37f1a26d7b..06b5f5c915 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 baae170ef7..b4bf0d906b 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 7c42fefb3c..683e256505 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 1bd92584a5..62b650ee32 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 fc40c0434e..202dbaab71 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 92f57ad6d4..c868214432 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 ff0674fc2c..e54215c2e6 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 9dea944622..fe2c9c12f7 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 cca84cec77..aa455c650f 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 d6d4aad725..a5e5482c51 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 224991ea15..d0cceb8112 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 f8ae080c7a..3bab8b0db8 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 cbc09449e6..0c75ce5e55 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 dd7fcbb18f..1421966123 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 504f3f54be..88c0ce5b29 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 22c996ac7d..7fd42310bc 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 2fd7b78ec2..7c460d9741 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 1bcec55b2d..a2fd2fc7c5 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 b7a957cf73..5e27c1688c 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 4e51aa0e32..fdc45b6cf3 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 d31ecad008..338d8f8132 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 df08eae7a8..0f09d2457b 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 b949bb190d..85cf6ec682 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 a3410c0b57..eb0e9d4e8b 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 6a98965577..2921995280 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 238f0151e1..913c2dcaa7 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 b1925cbf32..5146b8810f 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 3efbf11550..24bc7ecb0c 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 7720162731..ce0b5e8baf 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 27c18b4907..b72adcb997 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 10ce438159..3ee3738e2f 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 6a74849f5f..1d31609eb5 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 1d4f53551e..8a153b8902 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 82deb91147..b21af0cd9d 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 bf6873c72c..9864bfa463 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 d0fc24e828..c12d90428e 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 642684d78f..8f20999803 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 e0bf8cd9fa..5ad93fa720 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 24e2ec8be3..1b5f2c6504 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 316b98003d..a717c3ff36 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 fc19b62878..9c621d3faa 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 d829677d2c..a3645ac504 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 14e78e3a4a..3d5c2384a2 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 af32c4e9ec..a598508921 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 b5a4186747..b53637945c 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 c9d5c43ba8..cf1f7edca7 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 88a6ee47d1..2c32802d6b 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 ba4cb6a668..30a5788858 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 0da14e1fb5..f411772961 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 5293754093..a93ea5d6dd 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 ad697f36d2..79e00f7f06 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 9e94df4a3b..88ac1ee3d8 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 37c9c9693f..85f4b93195 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 be51491afb..3fe8915c28 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 64ea777d1f..191ae0f14f 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 c19ade3df9..ef4af548de 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 a31b6c0344..347f484f84 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 75abe4d2cf..556095eac2 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 6fcbbd33f2..22cabe0fd0 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 0c53a6d492..511532cd10 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 883e0bf282..9c92841390 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 7a76970c7a..27a959ebec 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 b7aac1dbeb..424c023af0 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 46a3cf54c2..61cff3374f 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 7d4ccd5fa0..c772c5aa8b 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 3366268866..3fdcc5ad80 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 d1273b4116..df8305a951 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 e1c4b26174..384826e5d9 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 3be8c2a3d6..91c8ef23b2 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 c03173797f..1b1c293eff 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 22eb9c1b1b..1baca98496 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 8645afa659..1d296064b3 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 f0b666634f..5a5ff8804d 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 9d9793b60a..f92872e9e3 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 7ad312147c..bc49e3114d 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 88e936d5f7..d67ed11cda 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 045ac3ba55..30f23cbdac 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 0ed24308b1..e106adfb6a 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 61667eb70c..31cc848e7a 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 7e67dcf199..6b41ffb7dd 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 9638b64710..d8da38816e 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 91c8caf5c4..e05fcde5a3 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 09446f5211..b881b02a34 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 be8818a05b..85ea10f22c 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 8dfe843a85..dda8f2686e 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 4d237bd9ed..e757fec09e 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 f165aeef4f..afbb8a8054 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 d4a01c08dd..65dcb79e2c 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 02f1ed4140..855e3b8100 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 df1d240a06..9e587303a7 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 21a99c0688..33d62aaab8 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 371f714e16..50d42369b0 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 ae7d617d33..c80a1a65d3 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 aac49bf619..4d111a5d29 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 519ce60b45..491fb006f2 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 4da74c572c..23efa302c1 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 12bbda069f..8b99f86d66 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 0b4203bf11..790cc29afa 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 ab175c5fcc..f8a74f375b 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 b5c04db8aa..26564a608f 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 622871c72b..890d803b18 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 f4918ed04c..c7a71305ff 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 8f29d303c7..2b7a3f02c7 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 953b8c8090..66a1a7add6 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 772001c6e5..4c0cea639b 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 63327ec5ee..bf69ad412b 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 4a330a8e56..bab3362a55 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 a4dd86edb2..cc5a298af5 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 9c1f8c1efa..e125a0ea85 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 de22b88eec..a26466d247 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 434eac4d3b..241bb525ce 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 d3fca742c8..7cf574d07b 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 233e5a382d..dabfed5546 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 90f49f924e..33630f9b13 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 6fa582620c..f1c3aadd50 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 fcc4e67b8f..3db3bccccf 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 2c8ee2fa06..a67dec99d0 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 30ae031ac5..def51ff00b 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 eb53388218..5ef25c03c8 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 ac4017e49c..0dfffc0eea 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 1a30abd2a2..9a87bca457 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 1563e8121e..8577323cca 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 b5707e9999..bf558c93f2 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 e94c213f60..23984d453a 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 ed5957fd08..7ee53c2385 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 8fea0043c5..ab6b0523a6 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 5f8fac0956..19d18177d1 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 0d8e7a4d1e..1063402364 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 0db093496d..192495967b 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 6104e9e082..aaea0fdd67 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 fcc31a67a8..617902ecb4 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 3258d58b44..4cab8a43e3 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 06ea6bf31c..f709c90f88 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 5a1525525d..b75e9e2282 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 7d1bf34a76..fab6b25bbb 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 e7de54d548..7be9b447b5 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 8399f8d4d9..58962de33e 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 5238e8bf96..1f048b4b34 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 81b9b0ed25..1c63656120 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 19a73b893c..d394c446ec 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 a684d71c9b..789e481872 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 12944173d9..e45b0ff8a8 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 522f7a68d7..0e84ea28b7 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 af1a969c22..c21fcc0c28 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 e937af63db..7672285771 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 b5a1dc3c3c..8d1e4dd337 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 e393e838a2..432e396cdd 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 3611bcbb00..59b8cfb695 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 714744cedf..85d367af1b 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 fe6c1eeecd..71f3f7bc3d 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 3d39003072..c5345f830c 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 8299a19fb9..4a5420ead8 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 d37c6b92ea..3feb42c585 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 ee0a5d1b04..60d004fa24 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 60631a5436..de76be04e0 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 1bacf3d321..4b75d745ae 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 7df33156b3..715d92ccc6 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 c3c2eb5f79..5154215cb9 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 62a7debfad..6ae96add96 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 f638cb9cfa..c0f304a95c 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 43bf83eac8..e82754159d 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 e7b6cc2450..c0f13c6d21 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 ee81d325ef..b8faaede64 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 86c48a7456..1bd53174a1 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 a58368b3a9..0066aa096b 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 0d7096c4aa..db8d25108e 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 4dbdc3379e..23b8a1f1b3 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 1a894769a7..2218a64db2 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 3fc1c396eb..35fd387bbe 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 568b490dfa..bd9703057c 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 b9ecd50592..f7a02cd71a 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 55d6ef9c07..2725862178 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 afd9f2dd4a..985b428035 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 44116d3c7e..fea11e35bf 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 50ee688cb8..e5fe9805cf 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 2d306586d9..f64dee85b3 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 9f28b96c24..4ab7382a03 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 652ad87f69..5461ba2f0b 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 cdf11fcc4a..06441082d2 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 d5bc056870..bbb7aee765 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 bda09393c0..56812d652a 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 8c53d7f9d1..8774877177 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 e1b0bc2481..f85d237dd9 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 fe21825bfd..60fd08f31f 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 287fce8741..bfa35c12ef 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 f4374f1acb..fb5180ed4d 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 0c333537fc..58a41eb82d 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 496ac51df7..6e97f49b5c 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 0a17c9ae91..08ea82a461 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 e8c3619253..167f788145 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 e8a41f1cc3..c33f6d53f4 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 1cec9bb700..307b046e7e 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 898fa40304..80fc8a1cd1 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 186f67a486..10348b8b9c 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 7a35e58ad5..73bdcacacb 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 5e36f292c3..5c84bf0883 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 13d451f361..835427a2d7 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 9c5e29be3a..1bb972dd01 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 206cc9e820..7ffefc6c2b 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 293cd13167..8a6d9b2956 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 d9eb60a8a7..3cb992f331 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 bce9231362..4f1d90507d 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 5aba37139e..2f26ce398c 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 2d37efa773..f331f90b36 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 00ebc44be0..ccee7b3cde 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 0bcdafef9f..0454a1a16c 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 cbddf13414..84539e6a77 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 e6134aa74d..04a63a2e09 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 0f6e5ac701..78c5d8ab7d 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 979a1dc2c5..e178dc3a0e 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 3988f871dc..5b95acebc8 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 7a1a0ef13e..df62afc2e8 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 779f67d062..7ee698e165 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 0feffc2fe2..23a69ba763 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 55d81f5685..681c6fa56c 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 642f8d7964..a51e49ca8a 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 34aaaf182b..4fad4cea30 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 95c580b2ec..d8eedc00f2 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 2b52b29eed..1d2967f83f 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 c839910fc4..3b673bcea2 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 696b34d64d..b74e5aa9f6 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 177bfacffd..79a3bbb31f 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 64273a7da0..b12536896c 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 e8b3693482..1f9aa60774 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 346e94cbf7..01c9c51a84 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 26827fd286..fd77e4dc53 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 b7d91074e5..4131e3e1f2 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 4b76eb1127..7c16c640d7 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 5d05dc870f..74a70d93f7 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 67b41e7106..76b8331356 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 5e2ece7850..e8a55f545c 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 91099fdefb..0f38c222ae 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 30ef00554d..96a3e699c7 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 a4b1ab1d43..6c14c7ea19 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 062884e1b7..5c87978f50 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 96c12443fe..90bf5b7258 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 677168dce7..53b7b7401c 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 6d579d0ff4..31c7259bca 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 4abdc675eb..a0ab6f5fe0 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 621b71f37e..50c0c0293b 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 835a9376f3..663c633e7b 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 cc23a075d4..438616ffd5 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 60b87ffafd..473073b285 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 6799f74b71..97af7b6c1a 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 81ad7acb8a..13814456c4 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 4b83f63cb1..b934f4bdd8 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 79b18fec56..968233f9c6 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 c9e6132361..12404f05be 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 43290f804d..f9c28575b6 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 58aeb2fd7f..b7520ba4cb 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 ce86ceb729..c6afd95a61 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 c04b9a77c4..e9612986ec 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 f61e920ed9..dc6fbde110 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 4676a45b5f..36b58927c7 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 cc15d028fe..df862f5a57 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 8ea6db5b62..dd4a28f357 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 8c0f49c20f..d50d7492c7 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 8690728b48..24905ddbfc 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 f3989a0975..526607b3f1 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 377a98bc48..397567cb81 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 d444ff6d29..8722c48a6f 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 9e72cf2dae..d4dae59363 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 65c7dad9f3..f363da3b41 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 042c486b3f..240a4cfeb5 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 72649cd1eb..1e2e50e6a7 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 ac9ad6107a..7bb6d8afd6 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 d91ec2b05c..ce59997a14 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 b3f4852161..ed828a6b5b 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 73334d4c93..61ff4055af 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 a33b45790d..9d198077f3 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 3315824216..96d93819c8 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 552ff8343a..ab7a2edb81 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 6b26ceb27c..29f0bd1e5b 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 475ca77479..2be828e3c2 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 51f790e1e8..627eb5d334 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 d2403c8342..eb0c635fe3 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 7772380479..fb5eeb6c46 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 0478954ad4..d6d08dace8 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 46c056e2a2..5b3ed75b91 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 886969d583..6136373e17 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 1dbdf10a19..8233f8e0f5 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 5b2181b255..b81a7fccc0 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 4eced89b50..930467e663 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 dc2438db5b..89b75b4ab7 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 48d99c06ca..0f3ea5b452 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 27ac5c52ee..d6873d1809 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 e344e72399..355fdd220a 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 780500b025..70faf84ef4 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 d528742f18..c0e1a7bf0c 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 0afdc09a05..2268f83511 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 bcd2f117b7..c5be4270fc 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 542177ae6f..a89ac0db99 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 b21eb0a539..20e9c86826 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 aa33e8c290..940b092c83 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 9cf58784f5..5d49fa3dc0 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 6e3f435c2d..cb0519acb5 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 6774e0ecac..407e3febe4 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 7b393db6ca..58729229c0 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 6527e2bc42..9e60ad4e8e 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 dfea989d15..21517b7a6a 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 4f2ce1ac24..9314b44d6b 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 7cb93adbf2..05541a7200 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 0a3fcd0984..c5b1ac1992 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 f821c48b36..57858bb782 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 9eaac2df2c..a5e9be4d95 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 b44cc185ff..a41b0614f5 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 4c7ecee007..37705593d2 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 26888cc541..6afe31bde8 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 1fdc950518..3f074bb7b5 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 ee5dc4b6b0..c82e3887e1 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 ebd014a7d9..0371ca1166 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 709bafb3f6..5d420dc9dd 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 410def6840..7dc7789bff 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 c21c3ef65c..d1d764d2f9 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 962dead6e5..14beb321e5 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 b8ca79b758..31869c156d 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 7250e84e26..32c78d959b 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 5954b3447f..894826641f 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 2715fc8a1d..1e14a7d719 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 cc14bfc8ca..31229b535e 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 85459464b3..e27e11795e 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 bb8fc6c9cf..bd95c213f1 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 896762ee43..786bc7c427 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 c7b5c86014..95a835c8fa 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 45ed8380e2..4be848d2bb 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 0c3d944f64..e85e08ab30 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 be61c1abfc..8b5a4b86bf 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 afc8d4e213..2a51076a5a 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 48e5eddd2c..3d8a18d56d 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 731b7e8bec..519bd47da2 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 7550c9ce69..48b19ce279 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 fa34ad44fc..0c5d96e870 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 50cb0da1e9..80abaea3ba 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 1e357c5721..96f11fc5c8 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 3865adceec..c91a95f810 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 cb99d2c2ea..40d7f1beee 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 00a0db8a50..fe84630be1 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 1874d9bf6c..3af0a3b7ce 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 4410ebea72..be3e357f2b 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 02486fc968..5fcba910b7 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 9a5a5beef0..34ddaf6012 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 1dbf6ba433..6542186848 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 e5512a615f..f01855388e 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 32bb162207..710631693c 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 13/13] 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 b1c5157140..b1f19e1c59 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")