Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Get rid of all cores without mem in the database #73

Open
natefoo opened this issue Oct 15, 2024 · 4 comments
Open

Get rid of all cores without mem in the database #73

natefoo opened this issue Oct 15, 2024 · 4 comments

Comments

@natefoo
Copy link
Member

natefoo commented Oct 15, 2024

Rules like this for raxml allocate additional cores but because most people set mem: cores * SOME_FACTOR in their default tool it also scales memory, which is unnecessary for tools that parallelize well but don't use much memory.

We should probably run down the list of tools in the DB that only set cores and set mem as well unless they should actually scale memory lineraly with cores (and it should be roughly 4 GB/core, which is what most of us use I believe).

@natefoo
Copy link
Member Author

natefoo commented Oct 15, 2024

Here's the script I used to check usage to allocation efficiency, I'll try to get this converted to gxadmin so we can dump to influx for monitoring:

#!/usr/bin/env python3
import argparse
import statistics

import psycopg2


INTERVAL = '1 week'
PG_DBNAME = 'galaxy_main'
MEM_FLOOR = 16
RUNTIME_FLOOR = 300
SQL = """
SELECT
    t.id,
    t.tool_id,
    t.mem_allocated,
    t.mem_used
FROM (
    SELECT
        j.id,
        j.tool_id,
        (SELECT metric_value FROM job_metric_numeric WHERE job_id = j.id AND metric_name = 'galaxy_memory_mb') * pow(1024, 2) AS mem_allocated,
        (SELECT metric_value FROM job_metric_numeric WHERE job_id = j.id AND metric_name = 'memory.peak') AS mem_used,
        (SELECT metric_value FROM job_metric_numeric WHERE job_id = j.id AND metric_name = 'runtime_seconds') AS runtime
    FROM
        job j
    WHERE
        j.update_time > timezone('UTC', now()) - %(interval)s::INTERVAL
        AND j.state = 'ok'
) AS t
WHERE
    t.mem_allocated >= (%(mem_floor)s * pow(1024, 3))
    AND t.runtime > %(runtime_floor)s
"""


def get_runtime_data(args):
    args = {
        "interval": args.interval,
        "mem_floor": args.mem_floor,
        "runtime_floor": args.runtime_floor,
    }
    conn = psycopg2.connect(dbname=PG_DBNAME)
    cur = conn.cursor()
    cur.execute(SQL, args)
    return cur.fetchall()


def calculate_ratios(rows):
    total = len(rows)
    missing = 0
    tools = {}
    for row in rows:
        job_id, tool_id, mem_allocated, mem_used = row
        if not mem_allocated or not mem_used:
            missing += 1
            continue
        if tool_id not in tools:
            tools[tool_id] = []
        tools[tool_id].append(float(mem_used) / mem_allocated)

    means = {}
    for tool_id, ratios in tools.items():
        means[tool_id] = statistics.mean(ratios)

    for tool_id in sorted(means, key=means.get, reverse=True):
        print(f"{tool_id}: {means[tool_id]*100:0.2f}%")

    print("")
    print(f"{(missing/total)*100:0.2f}% missing")


parser = argparse.ArgumentParser()
parser.add_argument("--interval", "-i", default=INTERVAL, help="Age of jobs to check")
parser.add_argument("--mem-floor", "-m", default=MEM_FLOOR, help="Memory floor (GB), ignore jobs that used less")
parser.add_argument("--runtime-floor", "-r", default=RUNTIME_FLOOR, help="Runtime floor (seconds), ignore jobs that ran for less")
args = parser.parse_args()
rows = get_runtime_data(args)
calculate_ratios(rows)

@bgruening
Copy link
Member

toolshed.g2.bx.psu.edu/repos/iuc/semibin/semibin/2.0.2+galaxy0: 572.33%
toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_intersectbed/2.31.1+galaxy0: 513.05%
toolshed.g2.bx.psu.edu/repos/mbernt/maxbin2/maxbin2/2.2.7+galaxy6: 437.16%
toolshed.g2.bx.psu.edu/repos/iuc/humann/humann/3.9+galaxy0: 365.20%
toolshed.g2.bx.psu.edu/repos/saskia-hiltemann/krona_text/krona-text/1: 361.04%
toolshed.g2.bx.psu.edu/repos/iuc/gecko/gecko/1.2+galaxy1: 300.99%
toolshed.g2.bx.psu.edu/repos/galaxyp/eggnog_mapper/eggnog_mapper/2.1.8+galaxy4: 289.33%
toolshed.g2.bx.psu.edu/repos/chemteam/bio3d_pca/bio3d_pca/2.3.4: 227.86%
toolshed.g2.bx.psu.edu/repos/iuc/checkm_lineage_wf/checkm_lineage_wf/1.2.3+galaxy0: 222.81%
toolshed.g2.bx.psu.edu/repos/chemteam/bio3d_rmsf/bio3d_rmsf/2.3.4: 207.49%
toolshed.g2.bx.psu.edu/repos/iuc/cat_contigs/cat_contigs/5.2.3+galaxy0: 203.05%
toolshed.g2.bx.psu.edu/repos/chemteam/bio3d_pca_visualize/bio3d_pca_visualize/2.3.4: 194.54%
toolshed.g2.bx.psu.edu/repos/devteam/velvet/velveth/1.2.10.3: 190.50%
toolshed.g2.bx.psu.edu/repos/iuc/checkm_lineage_wf/checkm_lineage_wf/1.2.0+galaxy0: 171.24%
toolshed.g2.bx.psu.edu/repos/iuc/ucsc_wigtobigwig/ucsc_wigtobigwig/469+galaxy0: 151.27%
toolshed.g2.bx.psu.edu/repos/devteam/megablast_wrapper/megablast_wrapper/1.2.0: 138.39%
toolshed.g2.bx.psu.edu/repos/bgruening/hicexplorer_hiccorrelate/hicexplorer_hiccorrelate/3.7.5+galaxy0: 132.82%
toolshed.g2.bx.psu.edu/repos/iuc/bwa_mem2/bwa_mem2/2.2.1+galaxy1: 128.01%
toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_profile/deeptools_plot_profile/3.5.4+galaxy0: 126.55%
toolshed.g2.bx.psu.edu/repos/bgruening/hifiasm/hifiasm/0.19.9+galaxy0: 120.39%
toolshed.g2.bx.psu.edu/repos/chemteam/bio3d_rmsd/bio3d_rmsd/2.3.4: 113.53%
toolshed.g2.bx.psu.edu/repos/bgruening/bismark/bismark_bowtie2/0.22.1+galaxy4: 111.46%
toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy0: 110.76%
toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.6+galaxy1: 106.44%
toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.3+galaxy1: 106.40%
toolshed.g2.bx.psu.edu/repos/iuc/novoplasty/novoplasty/4.3.1+galaxy0: 105.79%
toolshed.g2.bx.psu.edu/repos/galaxy-australia/alphafold2/alphafold/2.3.2+galaxy0: 105.49%
toolshed.g2.bx.psu.edu/repos/iuc/abyss/abyss-pe/2.3.9+galaxy0: 104.89%
toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1: 103.09%
toolshed.g2.bx.psu.edu/repos/iuc/bwa_mem2/bwa_mem2/2.2.1+galaxy0: 102.41%
toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fasterq_dump/3.1.1+galaxy0: 100.34%
toolshed.g2.bx.psu.edu/repos/iuc/pear/iuc_pear/0.9.6.3: 100.10%
toolshed.g2.bx.psu.edu/repos/bgruening/trim_galore/trim_galore/0.4.2: 100.00%
toolshed.g2.bx.psu.edu/repos/iuc/data_manager_interproscan/data_manager_interproscan/0.0.3: 100.00%
toolshed.g2.bx.psu.edu/repos/iuc/cat_bins/cat_bins/5.2.3+galaxy0: 100.00%
join1: 100.00%
toolshed.g2.bx.psu.edu/repos/bgruening/diamond/bg_diamond_makedb/2.0.15+galaxy0: 100.00%
toolshed.g2.bx.psu.edu/repos/devteam/ncbi_blast_plus/ncbi_blastn_wrapper/2.14.1+galaxy0: 100.00%
toolshed.g2.bx.psu.edu/repos/chemteam/md_converter/md_converter/1.9.6+galaxy0: 100.00%
toolshed.g2.bx.psu.edu/repos/iuc/trinity/trinity/2.9.1+galaxy2: 100.00%
toolshed.g2.bx.psu.edu/repos/blankenberg/naive_variant_caller/naive_variant_caller/0.0.4: 100.00%
toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.0.8_beta+galaxy0: 100.00%
toolshed.g2.bx.psu.edu/repos/devteam/ncbi_blast_plus/ncbi_blastn_wrapper/2.14.1+galaxy2: 99.45%
toolshed.g2.bx.psu.edu/repos/galaxy-australia/alphafold2/alphafold/2.3.1+galaxy5: 98.95%
toolshed.g2.bx.psu.edu/repos/galaxyp/maxquant/maxquant/1.6.10.43+galaxy4: 98.08%
toolshed.g2.bx.psu.edu/repos/devteam/samtools_mpileup/samtools_mpileup/2.1.7: 97.07%
toolshed.g2.bx.psu.edu/repos/iuc/bwameth/bwameth/0.2.7+galaxy0: 96.26%
toolshed.g2.bx.psu.edu/repos/iuc/rna_starsolo/rna_starsolo/2.7.10b+galaxy3: 95.35%
toolshed.g2.bx.psu.edu/repos/iuc/data_manager_build_kraken2_database/kraken2_build_database/2.1.2+galaxy0: 94.68%
toolshed.g2.bx.psu.edu/repos/iuc/rna_starsolo/rna_starsolo/2.7.11a+galaxy1: 93.26%
toolshed.g2.bx.psu.edu/repos/rnateam/sortmerna/bg_sortmerna/2.1b.6: 93.05%
toolshed.g2.bx.psu.edu/repos/iuc/bakta/bakta/1.9.2+galaxy0: 92.87%
toolshed.g2.bx.psu.edu/repos/devteam/ncbi_blast_plus/ncbi_blastx_wrapper/2.14.1+galaxy2: 90.63%
toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.7.8a+galaxy0: 89.54%
toolshed.g2.bx.psu.edu/repos/iuc/qualimap_bamqc/qualimap_bamqc/2.2.2c+galaxy1: 88.36%
toolshed.g2.bx.psu.edu/repos/galaxyp/eggnog_mapper/eggnog_mapper_search/2.1.8+galaxy4: 88.19%
toolshed.g2.bx.psu.edu/repos/iuc/bakta/bakta/1.9.3+galaxy0: 85.76%
toolshed.g2.bx.psu.edu/repos/devteam/ncbi_blast_plus/ncbi_tblastn_wrapper/2.14.1+galaxy2: 83.33%
toolshed.g2.bx.psu.edu/repos/gbcs-embl-heidelberg/je_demultiplex/je_demultiplex/1.2.1: 83.24%
toolshed.g2.bx.psu.edu/repos/peterjc/mira_assembler/mira_assembler/0.0.11: 82.37%
toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.9+galaxy1: 81.12%
toolshed.g2.bx.psu.edu/repos/galaxy-australia/metawrapmg_binning/metawrapmg_binning/1.3.0+galaxy1: 80.32%
toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.7.11a+galaxy1: 80.00%
toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.7.10b+galaxy4: 77.18%
toolshed.g2.bx.psu.edu/repos/galaxyp/eggnog_mapper/eggnog_mapper/2.1.8+galaxy3: 77.07%
toolshed.g2.bx.psu.edu/repos/iuc/bakta/bakta/1.9.4+galaxy0: 76.66%
toolshed.g2.bx.psu.edu/repos/bgruening/diamond/bg_diamond/2.0.15+galaxy0: 75.80%
toolshed.g2.bx.psu.edu/repos/iuc/novoplasty/novoplasty/4.2+galaxy0: 75.68%
toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fastq_dump/3.1.1+galaxy1: 74.46%
toolshed.g2.bx.psu.edu/repos/iuc/trinity/trinity/2.15.1+galaxy1: 73.75%
toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.2: 72.85%
toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.8+galaxy1: 72.49%
toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.4.5+galaxy0: 71.77%
toolshed.g2.bx.psu.edu/repos/galaxyp/fragpipe/fragpipe/20.0+galaxy2: 71.69%
toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.28+galaxy0: 71.67%
toolshed.g2.bx.psu.edu/repos/iuc/meryl/meryl/1.3+galaxy6: 71.62%
toolshed.g2.bx.psu.edu/repos/galaxyp/pepquery2/pepquery2/2.0.2+galaxy0: 70.78%
toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.5.3+galaxy0: 67.86%
toolshed.g2.bx.psu.edu/repos/bgruening/hicexplorer_hicplotmatrix/hicexplorer_hicplotmatrix/3.7.5+galaxy0: 66.66%
toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_heatmap/deeptools_plot_heatmap/3.5.4+galaxy0: 66.53%
toolshed.g2.bx.psu.edu/repos/devteam/ncbi_blast_plus/ncbi_blastp_wrapper/2.14.1+galaxy2: 66.06%
toolshed.g2.bx.psu.edu/repos/devteam/ncbi_blast_plus/ncbi_blastn_wrapper/2.10.1+galaxy2: 65.53%
toolshed.g2.bx.psu.edu/repos/genouest/helixer/helixer/0.3.3+galaxy1: 65.43%
toolshed.g2.bx.psu.edu/repos/bgruening/canu/canu/2.2+galaxy0: 64.12%
toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fasterq_dump/3.1.1+galaxy1: 62.59%
toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.7.11a+galaxy0: 61.60%
toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.7.5b: 61.23%
toolshed.g2.bx.psu.edu/repos/iuc/qualimap_bamqc/qualimap_bamqc/2.3+galaxy0: 60.11%
toolshed.g2.bx.psu.edu/repos/iuc/hisat2/hisat2/2.2.1+galaxy1: 59.25%
toolshed.g2.bx.psu.edu/repos/iuc/picrust2_pipeline/picrust2_pipeline/2.5.3+galaxy0: 58.79%
toolshed.g2.bx.psu.edu/repos/bgruening/pileometh/pileometh/0.5.2+galaxy0: 58.67%
toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.3.4.1: 58.66%
toolshed.g2.bx.psu.edu/repos/iuc/scanpy_cluster_reduce_dimension/scanpy_cluster_reduce_dimension/1.10.2+galaxy1: 57.72%
toolshed.g2.bx.psu.edu/repos/bgruening/trim_galore/trim_galore/0.6.7+galaxy0: 57.58%
toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.5.0+galaxy0: 57.57%
toolshed.g2.bx.psu.edu/repos/iuc/kallisto_quant/kallisto_quant/0.48.0+galaxy1: 56.36%
toolshed.g2.bx.psu.edu/repos/iuc/metaphlan/metaphlan/4.0.6+galaxy1: 55.79%
toolshed.g2.bx.psu.edu/repos/iuc/trinity_align_and_estimate_abundance/trinity_align_and_estimate_abundance/2.9.1+galaxy1: 54.84%
toolshed.g2.bx.psu.edu/repos/iuc/metaphlan/metaphlan/4.0.6+galaxy0: 53.91%
toolshed.g2.bx.psu.edu/repos/devteam/velvet/velvetg/1.2.10.2: 53.72%
toolshed.g2.bx.psu.edu/repos/iuc/gemini_load/gemini_load/0.20.1+galaxy2: 53.54%
toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fastq_dump/3.1.1+galaxy0: 53.27%
toolshed.g2.bx.psu.edu/repos/devteam/fastq_paired_end_interlacer/fastq_paired_end_interlacer/1.2.0.1+galaxy0: 52.72%
toolshed.g2.bx.psu.edu/repos/iuc/fasttree/fasttree/2.1.10+galaxy1: 52.69%
toolshed.g2.bx.psu.edu/repos/iuc/raven/raven/1.8.3+galaxy0: 52.38%
toolshed.g2.bx.psu.edu/repos/iuc/gtdbtk_classify_wf/gtdbtk_classify_wf/2.3.2+galaxy1: 51.88%
toolshed.g2.bx.psu.edu/repos/iuc/filtlong/filtlong/0.2.1+galaxy0: 50.79%
toolshed.g2.bx.psu.edu/repos/iuc/pilon/pilon/1.20.1: 50.65%
toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.3.4.3+galaxy0: 50.09%
toolshed.g2.bx.psu.edu/repos/bgruening/hicexplorer_hicplotmatrix/hicexplorer_hicplotmatrix/3.7.2+galaxy0: 49.69%
toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.5.3+galaxy1: 46.23%
toolshed.g2.bx.psu.edu/repos/bgruening/trim_galore/trim_galore/0.4.3.1: 45.96%
toolshed.g2.bx.psu.edu/repos/iuc/metaphlan/metaphlan/4.1.1+galaxy3: 45.86%
toolshed.g2.bx.psu.edu/repos/iuc/humann/humann/3.7+galaxy0: 45.17%
toolshed.g2.bx.psu.edu/repos/devteam/kraken/kraken/1.3.1: 44.40%
toolshed.g2.bx.psu.edu/repos/rnateam/sortmerna/bg_sortmerna/2.1b.4: 44.02%
toolshed.g2.bx.psu.edu/repos/devteam/freebayes/freebayes/1.3.6+galaxy0: 43.95%
toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/2022.09+galaxy4: 43.06%
toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_compute_matrix/deeptools_compute_matrix/3.5.4+galaxy0: 41.68%
toolshed.g2.bx.psu.edu/repos/galaxyp/mz_to_sqlite/mz_to_sqlite/2.1.1+galaxy0: 40.39%
toolshed.g2.bx.psu.edu/repos/iuc/metabat2/metabat2/2.15+galaxy3: 37.59%
toolshed.g2.bx.psu.edu/repos/devteam/ncbi_blast_plus/ncbi_makeblastdb/2.14.1+galaxy2: 37.36%
toolshed.g2.bx.psu.edu/repos/devteam/sam_merge/sam_merge2/1.2.0: 36.82%
toolshed.g2.bx.psu.edu/repos/bgruening/trim_galore/trim_galore/0.4.3.0: 35.86%
toolshed.g2.bx.psu.edu/repos/iuc/optitype/optitype/1.3.5+galaxy0: 35.03%
toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.8+galaxy0: 34.82%
toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa/0.7.18: 34.72%
toolshed.g2.bx.psu.edu/repos/bgruening/diffbind/diffbind/3.12.0+galaxy0: 34.29%
toolshed.g2.bx.psu.edu/repos/bgruening/interproscan/interproscan/5.59-91.0+galaxy3: 34.00%
toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MarkDuplicates/2.18.2.4: 33.87%
toolshed.g2.bx.psu.edu/repos/galaxyp/maxquant/maxquant/2.0.3.0+galaxy0: 33.43%
toolshed.g2.bx.psu.edu/repos/iuc/trinity_align_and_estimate_abundance/trinity_align_and_estimate_abundance/2.15.1+galaxy0: 33.31%
toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bam_compare/deeptools_bam_compare/3.5.4+galaxy0: 32.81%
toolshed.g2.bx.psu.edu/repos/bgruening/salmon/salmon/1.10.1+galaxy2: 32.62%
toolshed.g2.bx.psu.edu/repos/lparsons/htseq_count/htseq_count/0.9.1+galaxy1: 32.44%
toolshed.g2.bx.psu.edu/repos/iuc/bcftools_mpileup/bcftools_mpileup/1.15.1+galaxy4: 32.07%
toolshed.g2.bx.psu.edu/repos/iuc/humann2/humann2/0.11.1.0: 31.51%
toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_heatmap2/ggplot2_heatmap2/3.1.3.1+galaxy0: 31.40%
toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.5.2b-2: 30.93%
toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MarkDuplicates/2.18.2.2: 30.74%
toolshed.g2.bx.psu.edu/repos/iuc/unicycler/unicycler/0.5.1+galaxy0: 28.68%
toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.18: 27.93%
toolshed.g2.bx.psu.edu/repos/bgruening/hicexplorer_hicfindtads/hicexplorer_hicfindtads/3.7.5+galaxy0: 27.16%
toolshed.g2.bx.psu.edu/repos/iuc/orthofinder_onlygroups/orthofinder_onlygroups/2.5.5+galaxy0: 26.83%
toolshed.g2.bx.psu.edu/repos/iuc/snpsift/snpSift_filter/4.3+t.galaxy1: 26.60%
toolshed.g2.bx.psu.edu/repos/bgruening/hicexplorer_hicmergematrixbins/hicexplorer_hicmergematrixbins/3.7.5+galaxy0: 25.89%
toolshed.g2.bx.psu.edu/repos/iuc/stringtie/stringtie/2.2.1+galaxy1: 25.47%
toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/1.16.5: 25.29%
toolshed.g2.bx.psu.edu/repos/nml/metaspades/metaspades/3.15.5+galaxy2: 25.04%
toolshed.g2.bx.psu.edu/repos/lparsons/htseq_count/htseq_count/2.0.5+galaxy0: 24.92%
toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1: 24.39%
toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.5.0+galaxy0: 24.15%
toolshed.g2.bx.psu.edu/repos/iuc/pureclip/pureclip/1.0.4: 22.41%
toolshed.g2.bx.psu.edu/repos/iuc/stringtie/stringtie/2.2.3+galaxy0: 21.00%
toolshed.g2.bx.psu.edu/repos/bgruening/diffbind/diffbind/2.10.0: 20.67%
toolshed.g2.bx.psu.edu/repos/lecorguille/xcms_fillpeaks/abims_xcms_fillPeaks/3.12.0+galaxy1: 20.55%
toolshed.g2.bx.psu.edu/repos/rnateam/mirdeep2_mapper/rbc_mirdeep2_mapper/2.0.0.8.1: 20.21%
toolshed.g2.bx.psu.edu/repos/rnateam/mirdeep2_mapper/rbc_mirdeep2_mapper/2.0.0: 20.20%
toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/peptide_shaker/2.0.33+galaxy1: 19.79%
toolshed.g2.bx.psu.edu/repos/rnateam/mafft/rbc_mafft/7.526+galaxy0: 19.49%
toolshed.g2.bx.psu.edu/repos/iuc/metabat2/metabat2/2.15+galaxy2: 19.42%
toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.7.1+galaxy0: 19.21%
toolshed.g2.bx.psu.edu/repos/bgruening/hicexplorer_hiccorrectmatrix/hicexplorer_hiccorrectmatrix/3.7.5+galaxy0: 18.26%
toolshed.g2.bx.psu.edu/repos/iuc/rnaquast/rna_quast/2.3.0+galaxy0: 17.66%
toolshed.g2.bx.psu.edu/repos/bgruening/nextdenovo/nextdenovo/2.5.0+galaxy0: 17.39%
toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bam_coverage/deeptools_bam_coverage/3.3.2.0.0: 17.18%
toolshed.g2.bx.psu.edu/repos/galaxyp/fragpipe/fragpipe/20.0+galaxy3: 16.73%
toolshed.g2.bx.psu.edu/repos/iuc/pear/iuc_pear/0.9.6.4: 16.55%
toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.20+galaxy2: 16.33%
toolshed.g2.bx.psu.edu/repos/nml/spades/spades/3.12.0+galaxy1: 15.80%
toolshed.g2.bx.psu.edu/repos/chemteam/gmx_sim/gmx_sim/2022+galaxy0: 15.01%
toolshed.g2.bx.psu.edu/repos/devteam/tophat2/tophat2/2.1.1: 14.96%
toolshed.g2.bx.psu.edu/repos/rnateam/peakachu/peakachu/0.2.0+galaxy0: 14.57%
toolshed.g2.bx.psu.edu/repos/iuc/stringtie/stringtie/2.2.2+galaxy0: 14.40%
toolshed.g2.bx.psu.edu/repos/iuc/concoct/concoct/1.1.0+galaxy2: 14.24%
toolshed.g2.bx.psu.edu/repos/iuc/maker/maker/2.31.11+galaxy2: 13.89%
toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_coverage/deeptools_plot_coverage/3.5.4+galaxy0: 13.47%
toolshed.g2.bx.psu.edu/repos/iuc/shovill/shovill/1.1.0+galaxy1: 13.06%
toolshed.g2.bx.psu.edu/repos/devteam/fastq_paired_end_interlacer/fastq_paired_end_interlacer/1.2.0.1: 12.79%
toolshed.g2.bx.psu.edu/repos/blankenberg/naive_variant_caller/naive_variant_caller/0.0.3: 12.60%
toolshed.g2.bx.psu.edu/repos/rnateam/peakachu/peakachu/0.1.0.2: 12.55%
toolshed.g2.bx.psu.edu/repos/galaxyp/msstatstmt/msstatstmt/2.0.0+galaxy1: 12.41%
toolshed.g2.bx.psu.edu/repos/iuc/megahit/megahit/1.2.9+galaxy1: 12.11%
toolshed.g2.bx.psu.edu/repos/iuc/vardict_java/vardict_java/1.8.3+galaxy1: 11.87%
toolshed.g2.bx.psu.edu/repos/iuc/spades_plasmidspades/spades_plasmidspades/3.15.5+galaxy2: 11.77%
toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bam_coverage/deeptools_bam_coverage/3.5.4+galaxy0: 11.64%
toolshed.g2.bx.psu.edu/repos/csbl/repeatmodeler/repeatmodeler/2.0.5+galaxy0: 11.43%
toolshed.g2.bx.psu.edu/repos/crs4/prokka/prokka/1.14.6+galaxy1: 11.28%
toolshed.g2.bx.psu.edu/repos/bgruening/augustus/augustus/3.4.0+galaxy2: 11.27%
toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_multi_bigwig_summary/deeptools_multi_bigwig_summary/3.5.4+galaxy0: 10.99%
toolshed.g2.bx.psu.edu/repos/iuc/scanpy_inspect/scanpy_inspect/1.10.2+galaxy1: 10.97%
toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bigwig_compare/deeptools_bigwig_compare/3.5.4+galaxy0: 10.71%
toolshed.g2.bx.psu.edu/repos/devteam/ncbi_blast_plus/ncbi_blastn_wrapper/2.10.1+galaxy0: 10.64%
toolshed.g2.bx.psu.edu/repos/iuc/chira_map/chira_map/1.4.30: 10.36%
toolshed.g2.bx.psu.edu/repos/lecorguille/xcms_retcor/abims_xcms_retcor/3.12.0+galaxy1: 10.16%
toolshed.g2.bx.psu.edu/repos/iuc/red/red/2018.09.10+galaxy1: 9.83%
toolshed.g2.bx.psu.edu/repos/iuc/unicycler/unicycler/0.5.0+galaxy1: 9.82%
toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_intersectbed/2.30.0+galaxy1: 9.48%
toolshed.g2.bx.psu.edu/repos/iuc/sleuth/sleuth/0.30.1+galaxy2: 9.13%
toolshed.g2.bx.psu.edu/repos/iuc/chira_extract/chira_extract/1.4.31: 8.59%
toolshed.g2.bx.psu.edu/repos/iuc/spades_rnaviralspades/spades_rnaviralspades/3.15.4+galaxy2: 8.52%
toolshed.g2.bx.psu.edu/repos/bgruening/hicexplorer_hictransform/hicexplorer_hictransform/3.7.5+galaxy0: 8.29%
toolshed.g2.bx.psu.edu/repos/iuc/spades_metaviralspades/spades_metaviralspades/3.15.5+galaxy2: 8.07%
toolshed.g2.bx.psu.edu/repos/iuc/rnaspades/rnaspades/3.15.5+galaxy2: 8.04%
toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bam_coverage/deeptools_bam_coverage/3.5.1.0.0: 7.69%
toolshed.g2.bx.psu.edu/repos/iuc/yahs/yahs/1.2a.2+galaxy2: 7.65%
toolshed.g2.bx.psu.edu/repos/galaxyp/msstats/msstats/4.0.0+galaxy1: 7.54%
toolshed.g2.bx.psu.edu/repos/iuc/spades_rnaviralspades/spades_rnaviralspades/3.15.5+galaxy2: 7.49%
toolshed.g2.bx.psu.edu/repos/bgruening/hicup_mapper/hicup_mapper/0.9.2+galaxy0: 7.25%
toolshed.g2.bx.psu.edu/repos/lparsons/htseq_count/htseq_count/0.6.1galaxy3: 7.14%
toolshed.g2.bx.psu.edu/repos/iuc/shovill/shovill/1.1.0+galaxy2: 7.13%
toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MarkDuplicates/3.1.1.0: 6.88%
toolshed.g2.bx.psu.edu/repos/nml/spades/spades/3.15.5+galaxy2: 6.86%
toolshed.g2.bx.psu.edu/repos/galaxyp/msstats/msstats/4.0.0.0: 6.76%
toolshed.g2.bx.psu.edu/repos/iuc/spades_metaplasmidspades/spades_metaplasmidspades/3.15.5+galaxy2: 6.52%
toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.4.6+galaxy0: 6.50%
toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_multi_bam_summary/deeptools_multi_bam_summary/3.5.4+galaxy0: 6.48%
toolshed.g2.bx.psu.edu/repos/iuc/porechop/porechop/0.2.4+galaxy0: 6.46%
toolshed.g2.bx.psu.edu/repos/bgruening/hicexplorer_hicbuildmatrix/hicexplorer_hicbuildmatrix/3.7.5+galaxy0: 6.28%
toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MarkDuplicates/2.18.2.3: 6.16%
toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.10.9+galaxy0: 6.03%
toolshed.g2.bx.psu.edu/repos/bgruening/antismash/antismash/6.1.1+galaxy1: 6.00%
toolshed.g2.bx.psu.edu/repos/iuc/gtdbtk_classify_wf/gtdbtk_classify_wf/2.3.2+galaxy0: 5.98%
toolshed.g2.bx.psu.edu/repos/iuc/iqtree/iqtree/2.3.6+galaxy0: 5.59%
toolshed.g2.bx.psu.edu/repos/iuc/edger/edger/3.36.0+galaxy5: 5.39%
toolshed.g2.bx.psu.edu/repos/chemteam/gmx_sim/gmx_sim/2020.4+galaxy1: 5.25%
toolshed.g2.bx.psu.edu/repos/iuc/pharokka/pharokka/1.3.2+galaxy0: 5.18%
toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_info/2022.09+galaxy2: 4.90%
toolshed.g2.bx.psu.edu/repos/bgruening/hicexplorer_hicpca/hicexplorer_hicpca/3.7.5+galaxy0: 4.74%
toolshed.g2.bx.psu.edu/repos/bgruening/repeat_masker/repeatmasker_wrapper/4.1.1: 4.70%
toolshed.g2.bx.psu.edu/repos/iuc/umi_tools_dedup/umi_tools_dedup/1.1.2+galaxy2: 4.53%
toolshed.g2.bx.psu.edu/repos/devteam/ncbi_blast_plus/ncbi_blastn_wrapper/2.14.1+galaxy1: 4.52%
toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_compute_gc_bias/deeptools_compute_gc_bias/2.5.7.0: 4.42%
toolshed.g2.bx.psu.edu/repos/iuc/anndata_manipulate/anndata_manipulate/0.10.9+galaxy0: 4.26%
toolshed.g2.bx.psu.edu/repos/bgruening/hicexplorer_hicbuildmatrix/hicexplorer_hicbuildmatrix/3.4.3.0: 4.07%
toolshed.g2.bx.psu.edu/repos/iuc/funannotate_annotate/funannotate_annotate/1.8.15+galaxy1: 3.98%
toolshed.g2.bx.psu.edu/repos/iuc/ivar_variants/ivar_variants/1.2+galaxy0: 3.91%
toolshed.g2.bx.psu.edu/repos/bgruening/hicexplorer_hicmergematrixbins/hicexplorer_hicmergematrixbins/3.7.2+galaxy0: 3.87%
toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_compute_matrix/deeptools_compute_matrix/3.5.1.0.0: 3.80%
toolshed.g2.bx.psu.edu/repos/iuc/megahit/megahit/1.2.9+galaxy0: 3.69%
toolshed.g2.bx.psu.edu/repos/iuc/funannotate_clean/funannotate_clean/1.8.15+galaxy5: 3.68%
toolshed.g2.bx.psu.edu/repos/iuc/anndata_import/anndata_import/0.10.9+galaxy0: 3.41%
toolshed.g2.bx.psu.edu/repos/devteam/ncbi_blast_plus/ncbi_tblastx_wrapper/2.14.1+galaxy2: 3.38%
toolshed.g2.bx.psu.edu/repos/iuc/roary/roary/3.13.0+galaxy3: 3.18%
toolshed.g2.bx.psu.edu/repos/iuc/meme_dreme/meme_dreme/4.11.2.0: 2.98%
toolshed.g2.bx.psu.edu/repos/iuc/gubbins/gubbins/3.2.1+galaxy0: 2.97%
toolshed.g2.bx.psu.edu/repos/iuc/chira_merge/chira_merge/1.4.30: 2.75%
toolshed.g2.bx.psu.edu/repos/bgruening/augustus/augustus/3.4.0+galaxy1: 2.74%
toolshed.g2.bx.psu.edu/repos/devteam/clustalw/clustalw/2.1+galaxy1: 2.42%
toolshed.g2.bx.psu.edu/repos/iuc/chira_quantify/chira_quantify/1.4.30: 2.41%
toolshed.g2.bx.psu.edu/repos/iuc/umi_tools_dedup/umi_tools_dedup/0.5.3.0: 2.34%
toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/4.1.4: 2.25%
toolshed.g2.bx.psu.edu/repos/iuc/raxml/raxml/8.2.12+galaxy1: 2.13%
toolshed.g2.bx.psu.edu/repos/iuc/ivar_consensus/ivar_consensus/1.2.2+galaxy0: 2.11%
toolshed.g2.bx.psu.edu/repos/bgruening/alevin/alevin/1.10.1+galaxy0: 2.11%
toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_fingerprint/deeptools_plot_fingerprint/3.5.4+galaxy0: 2.10%
toolshed.g2.bx.psu.edu/repos/devteam/cufflinks/cufflinks/2.2.1.4: 2.00%
toolshed.g2.bx.psu.edu/repos/iuc/funannotate_annotate/funannotate_annotate/1.8.15+galaxy5: 1.80%
toolshed.g2.bx.psu.edu/repos/iuc/mothur_align_seqs/mothur_align_seqs/1.39.5.0: 1.59%
toolshed.g2.bx.psu.edu/repos/bgruening/mitohifi/mitohifi/3+galaxy0: 1.49%
toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_fingerprint/deeptools_plot_fingerprint/2.5.7.0: 1.38%
toolshed.g2.bx.psu.edu/repos/devteam/join/gops_join_1/1.0.0: 1.27%
toolshed.g2.bx.psu.edu/repos/iuc/mothur_make_contigs/mothur_make_contigs/1.39.5.1: 1.25%
toolshed.g2.bx.psu.edu/repos/bgruening/blobtoolkit/blobtoolkit/4.0.7+galaxy2: 1.22%
toolshed.g2.bx.psu.edu/repos/iuc/abricate/abricate/1.0.1: 1.21%
toolshed.g2.bx.psu.edu/repos/devteam/ncbi_blast_plus/ncbi_blastp_wrapper/2.10.1+galaxy2: 1.20%
toolshed.g2.bx.psu.edu/repos/iuc/mothur_classify_seqs/mothur_classify_seqs/1.39.5.0: 1.19%
toolshed.g2.bx.psu.edu/repos/bgruening/repeat_masker/repeatmasker_wrapper/4.1.2-p1+galaxy1: 1.13%
toolshed.g2.bx.psu.edu/repos/iuc/maker/maker/2.31.11: 1.12%
toolshed.g2.bx.psu.edu/repos/iuc/iqtree/iqtree/2.1.2+galaxy2: 1.00%
toolshed.g2.bx.psu.edu/repos/iuc/medaka_variant/medaka_variant/1.7.2+galaxy1: 0.99%
toolshed.g2.bx.psu.edu/repos/iuc/ivar_consensus/ivar_consensus/1.4.3+galaxy0: 0.88%
toolshed.g2.bx.psu.edu/repos/iuc/iqtree/iqtree/1.5.5.3: 0.63%

0.00% missing

@bgruening
Copy link
Member

Latest results from EU:

galaxy@sn06:~$ gxadmin query tool-memory-efficiency

                                                             tool_id                                                             | run_count | total_runtime_hrs | avg_mem_used_gb | avg_mem_allocated_gb | avg_mem_percent 
---------------------------------------------------------------------------------------------------------------------------------+-----------+-------------------+-----------------+----------------------+-----------------
 toolshed.g2.bx.psu.edu/repos/iuc/bbtools_tadpole/bbtools_tadpole/39.08+galaxy0                                                  |        32 |             28.22 |           70.39 |                 8.00 |          879.93
 toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy0                                                                      |         9 |             49.72 |           68.85 |                12.00 |          573.78
 toolshed.g2.bx.psu.edu/repos/galaxyp/openms_fileconverter/FileConverter/3.1+galaxy0                                             |        14 |              3.69 |           45.43 |                 8.00 |          567.90
 toolshed.g2.bx.psu.edu/repos/bgruening/flye/flye/2.9.5+galaxy0                                                                  |         9 |            155.25 |           94.79 |                32.73 |          550.65
 toolshed.g2.bx.psu.edu/repos/iuc/breseq/breseq/0.35.5+galaxy1                                                                   |        53 |            407.16 |           75.74 |                15.30 |          495.06
 toolshed.g2.bx.psu.edu/repos/devteam/velvet/velveth/1.2.10.3                                                                    |        14 |             44.42 |           56.70 |                16.00 |          354.35
 toolshed.g2.bx.psu.edu/repos/simon-gladman/velvetoptimiser/velvetoptimiser/2.2.6                                                |        18 |            102.95 |           48.40 |                15.20 |          318.42
 toolshed.g2.bx.psu.edu/repos/crs4/taxonomy_krona_chart/taxonomy_krona_chart/2.7.1+galaxy0                                       |        21 |              6.49 |           37.26 |                12.00 |          310.53
 toolshed.g2.bx.psu.edu/repos/iuc/microsatbed/microsatbed/1.3.3+galaxy1                                                          |        24 |              7.75 |           23.55 |                 8.00 |          294.35
 toolshed.g2.bx.psu.edu/repos/galaxyp/eggnog_mapper/eggnog_mapper/2.1.8+galaxy4                                                  |      1133 |            885.67 |           70.36 |                24.00 |          293.18
 toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_intersectbed/2.31.1+galaxy0                                                  |        13 |            156.65 |          114.58 |                40.00 |          286.44
 toolshed.g2.bx.psu.edu/repos/iuc/arriba/arriba/2.4.0+galaxy2                                                                    |        10 |             13.63 |           43.24 |                15.30 |          282.59
 toolshed.g2.bx.psu.edu/repos/iuc/arriba/arriba/2.4.0+galaxy1                                                                    |        12 |             14.71 |           39.33 |                15.30 |          257.09
 toolshed.g2.bx.psu.edu/repos/iuc/jellyfish/jellyfish/2.3.0+galaxy1                                                              |        20 |             52.93 |           30.38 |                12.00 |          253.19
 toolshed.g2.bx.psu.edu/repos/iuc/mlst/mlst/2.22.0                                                                               |        15 |             61.40 |           19.62 |                 8.00 |          245.23
 toolshed.g2.bx.psu.edu/repos/iuc/vsearch/vsearch_dereplication/1.9.7.0                                                          |        33 |              6.84 |           19.29 |                 8.00 |          241.14
 toolshed.g2.bx.psu.edu/repos/iuc/links/links/2.0.1+galaxy+1                                                                     |        11 |             10.86 |           35.87 |                15.30 |          234.47
 toolshed.g2.bx.psu.edu/repos/iuc/novoplasty/novoplasty/4.2+galaxy0                                                              |         7 |             66.07 |           93.60 |                40.00 |          233.99
 toolshed.g2.bx.psu.edu/repos/devteam/ncbi_blast_plus/ncbi_makeblastdb/2.14.1+galaxy2                                            |        10 |             26.33 |           45.27 |                20.00 |          226.37
 toolshed.g2.bx.psu.edu/repos/iuc/drep_dereplicate/drep_dereplicate/3.4.3+galaxy0                                                |         9 |              2.39 |           35.90 |                16.00 |          224.40
 wig_to_bigWig                                                                                                                   |         9 |              1.57 |           21.01 |                10.00 |          210.06
 toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.4+galaxy2                                                                     |       101 |             24.12 |           31.70 |                15.20 |          208.59
 toolshed.g2.bx.psu.edu/repos/iuc/checkm_lineage_wf/checkm_lineage_wf/1.2.3+galaxy0                                              |        49 |             11.70 |           33.35 |                16.00 |          208.44
 toolshed.g2.bx.psu.edu/repos/iuc/checkm_lineage_wf/checkm_lineage_wf/1.2.0+galaxy0                                              |        15 |              2.73 |           32.41 |                16.00 |          202.56
 toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_sortbed/2.31.1+galaxy0                                                       |        22 |              2.87 |           40.40 |                20.00 |          201.99
 toolshed.g2.bx.psu.edu/repos/chemteam/bio3d_pca/bio3d_pca/2.3.4                                                                 |        10 |              8.11 |          125.57 |                64.00 |          196.20
 toolshed.g2.bx.psu.edu/repos/iuc/cat_contigs/cat_contigs/5.2.3+galaxy0                                                          |       119 |            467.52 |           45.53 |                24.00 |          189.71
 toolshed.g2.bx.psu.edu/repos/iuc/macs2/macs2_bdgdiff/2.2.9.1+galaxy0                                                            |        15 |              5.60 |           18.30 |                10.00 |          183.00
 toolshed.g2.bx.psu.edu/repos/galaxy-australia/smudgeplot/smudgeplot/0.2.5+galaxy3                                               |         9 |            145.47 |          202.94 |               150.00 |          179.08
 toolshed.g2.bx.psu.edu/repos/bgruening/diffbind/diffbind/3.12.0+galaxy0                                                         |        32 |             17.79 |           49.71 |                30.70 |          161.93
 toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.4+galaxy1                                                                     |       240 |             58.81 |           24.24 |                15.20 |          159.48
 toolshed.g2.bx.psu.edu/repos/iuc/merqury/merqury/1.3+galaxy4                                                                    |        15 |             39.68 |           18.79 |                12.00 |          156.56
 toolshed.g2.bx.psu.edu/repos/iuc/bellerophon/bellerophon/1.0+galaxy1                                                            |        13 |             35.73 |           11.76 |                 8.00 |          147.03
 toolshed.g2.bx.psu.edu/repos/chemteam/bio3d_rmsf/bio3d_rmsf/2.3.4                                                               |        16 |             12.16 |          129.01 |                90.00 |          143.34
 toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.4+galaxy0                                                                     |         6 |              2.62 |           21.74 |                15.20 |          143.01
 toolshed.g2.bx.psu.edu/repos/galaxyp/eggnog_mapper/eggnog_mapper_search/2.1.8+galaxy4                                           |        50 |            192.03 |           28.60 |                20.00 |          142.99
 toolshed.g2.bx.psu.edu/repos/iuc/rna_starsolo/rna_starsolo/2.7.11a+galaxy1                                                      |        26 |            107.97 |           56.12 |                40.00 |          140.30
 toolshed.g2.bx.psu.edu/repos/devteam/megablast_wrapper/megablast_wrapper/1.2.0                                                  |      1112 |           1417.24 |           27.23 |                20.00 |          136.17
 toolshed.g2.bx.psu.edu/repos/iuc/ucsc_wigtobigwig/ucsc_wigtobigwig/469+galaxy0                                                  |        10 |              1.50 |           26.15 |                20.00 |          130.76
 toolshed.g2.bx.psu.edu/repos/chemteam/md_converter/md_converter/1.9.6+galaxy0                                                   |        15 |              5.37 |           19.25 |                16.00 |          120.32
 toolshed.g2.bx.psu.edu/repos/iuc/cat_bins/cat_bins/5.2.3+galaxy0                                                                |       294 |            431.71 |           28.81 |                24.08 |          119.69
 toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.3+galaxy1                                                                  |      1772 |            795.19 |           83.58 |                70.00 |          119.39
 toolshed.g2.bx.psu.edu/repos/iuc/humann/humann/3.9+galaxy0                                                                      |        60 |           1554.40 |          103.57 |                90.00 |          115.07
 toolshed.g2.bx.psu.edu/repos/bgruening/nanopolish_eventalign/nanopolish_eventalign/0.14.0+galaxy0                               |        12 |             39.07 |           13.80 |                12.00 |          115.01
 toolshed.g2.bx.psu.edu/repos/iuc/plasflow/PlasFlow/1.1.0+galaxy0                                                                |        16 |              2.51 |           13.62 |                12.00 |          113.51
 toolshed.g2.bx.psu.edu/repos/iuc/abyss/abyss-pe/2.3.9+galaxy0                                                                   |        69 |            812.06 |           79.24 |                70.00 |          113.20
 toolshed.g2.bx.psu.edu/repos/devteam/ncbi_blast_plus/ncbi_blastn_wrapper/2.14.1+galaxy2                                         |      1212 |           6926.01 |           45.18 |                40.00 |          112.96
 toolshed.g2.bx.psu.edu/repos/iuc/deepvariant/deepvariant/1.5.0+galaxy1                                                          |        83 |            199.02 |           11.17 |                10.00 |          111.69
 toolshed.g2.bx.psu.edu/repos/galaxy-australia/alphafold2/alphafold/2.3.2+galaxy0                                                |       686 |          12226.36 |           35.27 |                32.00 |          110.23
 toolshed.g2.bx.psu.edu/repos/bgruening/hifiasm/hifiasm/0.19.9+galaxy0                                                           |        25 |            400.06 |          132.16 |               120.00 |          110.13
 toolshed.g2.bx.psu.edu/repos/chemteam/bio3d_rmsd/bio3d_rmsd/2.3.4                                                               |        23 |             12.39 |           98.91 |                90.00 |          109.90
 toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy0                                                                  |        13 |              2.90 |           76.37 |                70.00 |          109.10
 toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_SortSam/2.18.2.1                                                             |        30 |             15.31 |           10.76 |                10.00 |          107.62
 toolshed.g2.bx.psu.edu/repos/gbcs-embl-heidelberg/je_demultiplex/je_demultiplex/1.2.1                                           |        34 |             18.51 |           21.43 |                20.00 |          107.15
 toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.6+galaxy1                                                             |        12 |              9.58 |           20.22 |                19.00 |          106.44
 toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1                                                                  |       590 |            147.69 |           73.57 |                70.00 |          105.11
 toolshed.g2.bx.psu.edu/repos/iuc/novoplasty/novoplasty/4.3.1+galaxy0                                                            |       262 |            461.40 |           41.79 |                37.31 |          104.87
 toolshed.g2.bx.psu.edu/repos/iuc/bwa_mem2/bwa_mem2/2.2.1+galaxy1                                                                |      1064 |            680.19 |           18.59 |                17.41 |          104.47
 toolshed.g2.bx.psu.edu/repos/iuc/dada2_assigntaxonomyaddspecies/dada2_assignTaxonomyAddspecies/1.30.0+galaxy0                   |        38 |            126.40 |           11.95 |                11.50 |          103.91
 toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.0.8_beta+galaxy0                                                             |        43 |              9.15 |           72.23 |                70.00 |          103.18
 toolshed.g2.bx.psu.edu/repos/iuc/bwa_mem2/bwa_mem2/2.2.1+galaxy0                                                                |        15 |             46.40 |           64.57 |                61.59 |          101.77
 toolshed.g2.bx.psu.edu/repos/bgruening/bismark/bismark_bowtie2/0.22.1+galaxy4                                                   |        38 |            336.61 |           30.50 |                30.00 |          101.65
 toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_AddOrReplaceReadGroups/3.1.1.0                                               |        25 |             20.56 |           12.19 |                12.00 |          101.55
 toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.6.0b-2                                                                    |         6 |              2.26 |           50.54 |                50.00 |          101.08
 toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fasterq_dump/3.1.1+galaxy0                                                           |        10 |             34.89 |           30.49 |                30.40 |          100.30
 toolshed.g2.bx.psu.edu/repos/iuc/pear/iuc_pear/0.9.6.3                                                                          |        10 |              4.93 |           26.63 |                26.60 |          100.10
 toolshed.g2.bx.psu.edu/repos/devteam/samtools_sort/samtools_sort/2.0.5                                                          |        57 |             19.63 |           10.00 |                10.00 |          100.00
 toolshed.g2.bx.psu.edu/repos/devteam/samtools_sort/samtools_sort/2.0.4                                                          |        74 |             15.89 |           10.00 |                10.00 |          100.00
 toolshed.g2.bx.psu.edu/repos/galaxy-australia/alphafold2/alphafold/2.3.1+galaxy5                                                |       199 |           1102.85 |           31.92 |                32.00 |           99.74
 toolshed.g2.bx.psu.edu/repos/iuc/rna_starsolo/rna_starsolo/2.7.10b+galaxy3                                                      |        13 |              4.22 |           39.88 |                40.00 |           99.71
 toolshed.g2.bx.psu.edu/repos/iuc/snpsift/snpSift_annotate/4.3+t.galaxy1                                                         |        84 |             27.27 |           11.89 |                12.00 |           99.08
 toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.7.7a                                                                      |        14 |              7.52 |           49.52 |                50.00 |           99.05
 toolshed.g2.bx.psu.edu/repos/galaxy-australia/alphafold2/alphafold/2.3.1+galaxy4                                                |        97 |           1246.39 |           31.66 |                32.00 |           98.94
 toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.19.5+galaxy1                                                                     |         7 |              2.05 |           14.98 |                15.20 |           98.56
 toolshed.g2.bx.psu.edu/repos/iuc/featurecounts/featurecounts/2.0.3+galaxy2                                                      |       656 |            107.96 |            7.66 |                 8.00 |           95.81
 CONVERTER_bedgraph_to_bigwig                                                                                                    |        40 |              7.34 |            7.64 |                 8.00 |           95.44
 toolshed.g2.bx.psu.edu/repos/bgruening/hicexplorer_hicplotmatrix/hicexplorer_hicplotmatrix/3.7.5+galaxy0                        |        20 |              8.73 |           60.22 |                64.00 |           94.09
 toolshed.g2.bx.psu.edu/repos/iuc/bwameth/bwameth/0.2.7+galaxy0                                                                  |        14 |              1.84 |           22.17 |                24.00 |           92.39
 toolshed.g2.bx.psu.edu/repos/iuc/humann2/humann2/0.11.1.3                                                                       |         6 |             74.64 |           81.92 |                90.00 |           91.03
 toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.4.5+galaxy1                                                              |         8 |             11.44 |           18.17 |                20.00 |           90.83
 toolshed.g2.bx.psu.edu/repos/chemteam/mdanalysis_cosine_analysis/mdanalysis_cosine_analysis/1.0.0+galaxy0                       |         6 |             13.31 |           10.79 |                12.00 |           89.93
 toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_profile/deeptools_plot_profile/3.5.4+galaxy0                              |        49 |              8.02 |           17.92 |                20.00 |           89.59
 toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_SortSam/3.1.1.0                                                              |        27 |             14.75 |            8.92 |                10.00 |           89.16
 toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MergeSamFiles/3.1.1.0                                                        |        14 |              7.14 |           10.58 |                12.00 |           88.20
 toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_FilterSamReads/3.1.1.0                                                       |        10 |              3.65 |           10.57 |                12.00 |           88.05
 toolshed.g2.bx.psu.edu/repos/pjbriggs/trimmomatic/trimmomatic/0.36.5                                                            |        18 |              6.91 |           10.51 |                12.00 |           87.58
 toolshed.g2.bx.psu.edu/repos/iuc/snippy/snippy/4.6.0+galaxy0                                                                    |       235 |             60.86 |           10.49 |                12.00 |           87.44
 toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_EstimateLibraryComplexity/3.1.1.0                                            |        48 |              8.99 |           10.30 |                12.00 |           85.79
 toolshed.g2.bx.psu.edu/repos/pjbriggs/trimmomatic/trimmomatic/0.39+galaxy0                                                      |        50 |             35.23 |           10.26 |                12.00 |           85.53
 toolshed.g2.bx.psu.edu/repos/iuc/mashmap/mashmap/3.1.3+galaxy0                                                                  |        39 |              8.24 |           26.76 |                32.00 |           83.61
 toolshed.g2.bx.psu.edu/repos/iuc/bakta/bakta/1.9.3+galaxy0                                                                      |        10 |              5.10 |           25.59 |                30.70 |           83.37
 toolshed.g2.bx.psu.edu/repos/chemteam/gmx_sim/gmx_sim/2020.2+galaxy0                                                            |         9 |             93.76 |           25.26 |                30.40 |           83.08
 toolshed.g2.bx.psu.edu/repos/iuc/macs2/macs2_callpeak/2.2.7.1+galaxy0                                                           |        37 |             10.69 |           12.46 |                15.00 |           83.05
 toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/sam_dump/3.1.1+galaxy1                                                               |        16 |             15.15 |            9.20 |                11.40 |           80.68
 toolshed.g2.bx.psu.edu/repos/devteam/samtools_mpileup/samtools_mpileup/2.1.7                                                    |        42 |             19.48 |           15.29 |                19.00 |           80.49
 toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/9.3+galaxy1                                             |        10 |              1.19 |            9.62 |                12.00 |           80.13
 toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.7.11a+galaxy1                                                             |      4616 |          12506.40 |           39.88 |                50.00 |           79.77
 toolshed.g2.bx.psu.edu/repos/devteam/fastq_paired_end_joiner/fastq_paired_end_joiner/2.0.1.1+galaxy1                            |         8 |             22.55 |            9.00 |                11.40 |           78.99
 toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.7.10b+galaxy4                                                             |       447 |            116.88 |           39.34 |                50.00 |           78.69
 toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fastq_dump/3.1.1+galaxy0                                                             |        11 |             17.84 |           15.72 |                20.00 |           78.60
 toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.9+galaxy1                                                             |       676 |            206.48 |           14.75 |                19.00 |           77.64
 toolshed.g2.bx.psu.edu/repos/galaxyp/eggnog_mapper/eggnog_mapper/2.1.8+galaxy3                                                  |        12 |             21.07 |           18.41 |                24.00 |           76.69
 toolshed.g2.bx.psu.edu/repos/iuc/semibin/semibin/2.0.2+galaxy0                                                                  |       128 |            235.03 |           12.19 |                16.00 |           76.19
 toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.20.1+galaxy0                                                                     |         8 |              1.43 |           11.40 |                15.20 |           74.99
 toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.2                                                                       |        79 |            280.92 |           22.45 |                30.00 |           74.83
 toolshed.g2.bx.psu.edu/repos/iuc/snpeff/snpEff/4.3+T.galaxy2                                                                    |       319 |            196.03 |            8.93 |                12.00 |           74.42
 toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.4.2+galaxy0                                                              |        35 |             49.80 |           14.87 |                20.00 |           74.36
 toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.4+galaxy0                                                             |        11 |              1.35 |           14.01 |                19.00 |           73.73
 toolshed.g2.bx.psu.edu/repos/galaxy-australia/metawrapmg_binning/metawrapmg_binning/1.3.0+galaxy1                               |        20 |             79.68 |           47.17 |                64.00 |           73.71
 toolshed.g2.bx.psu.edu/repos/rnateam/sortmerna/bg_sortmerna/2.1b.6                                                              |        84 |            208.59 |           22.59 |                30.70 |           73.59
 toolshed.g2.bx.psu.edu/repos/bgruening/diamond/bg_diamond/2.0.15+galaxy0                                                        |       116 |            860.72 |           66.10 |                90.00 |           73.44
 toolshed.g2.bx.psu.edu/repos/iuc/medaka_consensus_pipeline/medaka_consensus_pipeline/1.7.2+galaxy0                              |        60 |             16.86 |            8.80 |                12.00 |           73.36
 toolshed.g2.bx.psu.edu/repos/devteam/ncbi_blast_plus/ncbi_tblastn_wrapper/2.14.1+galaxy2                                        |        10 |            518.12 |           29.22 |                40.00 |           73.05
 toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.7.8a+galaxy0                                                              |        42 |             16.92 |           36.23 |                50.00 |           72.46
 toolshed.g2.bx.psu.edu/repos/iuc/medaka_consensus_pipeline/medaka_consensus_pipeline/1.7.2+galaxy1                              |       395 |            486.70 |            8.66 |                12.00 |           72.13
 toolshed.g2.bx.psu.edu/repos/galaxyp/pepquery2/pepquery2/2.0.2+galaxy0                                                          |        12 |              4.88 |           14.36 |                20.00 |           71.79
 toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_CASM/3.1.1.0                                                                 |        74 |             22.37 |            8.60 |                12.00 |           71.63
 toolshed.g2.bx.psu.edu/repos/galaxyp/pepquery2/pepquery2/2.0.2+galaxy2                                                          |         7 |              1.35 |           14.30 |                20.00 |           71.48
 toolshed.g2.bx.psu.edu/repos/iuc/bakta/bakta/1.9.4+galaxy0                                                                      |       666 |            279.58 |           21.91 |                30.70 |           71.37
 toolshed.g2.bx.psu.edu/repos/iuc/krakentools_extract_kraken_reads/krakentools_extract_kraken_reads/1.2+galaxy1                  |       200 |            117.15 |            7.11 |                10.00 |           71.12
 toolshed.g2.bx.psu.edu/repos/iuc/qualimap_bamqc/qualimap_bamqc/2.2.2c+galaxy1                                                   |        57 |             18.23 |           17.00 |                24.00 |           70.83
 toolshed.g2.bx.psu.edu/repos/iuc/trinity/trinity/2.15.1+galaxy1                                                                 |       263 |           3758.11 |          125.20 |               167.94 |           70.61
 toolshed.g2.bx.psu.edu/repos/devteam/samtool_filter2/samtool_filter2/1.8+galaxy1                                                |       109 |             23.53 |            7.93 |                11.40 |           69.57
 toolshed.g2.bx.psu.edu/repos/pjbriggs/trimmomatic/trimmomatic/0.39+galaxy2                                                      |      3246 |           1516.63 |            8.31 |                12.00 |           69.25
 toolshed.g2.bx.psu.edu/repos/iuc/lofreq_indelqual/lofreq_indelqual/2.1.5+galaxy1                                                |        41 |              6.55 |            7.84 |                11.40 |           68.78
 toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/search_gui/4.0.41+galaxy1                                                    |         9 |             10.08 |            8.24 |                12.00 |           68.70
 toolshed.g2.bx.psu.edu/repos/iuc/picrust2_hsp/picrust2_hsp/2.5.3+galaxy0                                                        |        17 |             11.40 |            6.85 |                10.00 |           68.55
 toolshed.g2.bx.psu.edu/repos/bgruening/trim_galore/trim_galore/0.6.7+galaxy0                                                    |      1138 |            410.09 |           12.97 |                19.00 |           68.25
 toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_heatmap2/ggplot2_heatmap2/3.2.0+galaxy0                                                |        12 |              2.99 |           16.34 |                24.00 |           68.10
 toolshed.g2.bx.psu.edu/repos/devteam/velvet/velvetg/1.2.10.2                                                                    |        23 |             59.98 |           21.73 |                32.00 |           67.90
 toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.5.3+galaxy0                                                              |        44 |             40.34 |           13.43 |                20.00 |           67.13
 toolshed.g2.bx.psu.edu/repos/iuc/kallisto_quant/kallisto_quant/0.48.0+galaxy1                                                   |       319 |            197.12 |           13.37 |                20.00 |           66.84
 toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.8+galaxy1                                                             |        24 |              4.39 |           12.69 |                19.00 |           66.80
 toolshed.g2.bx.psu.edu/repos/iuc/funannotate_predict/funannotate_predict/1.8.15+galaxy1                                         |         7 |             24.60 |            7.99 |                12.00 |           66.61
 toolshed.g2.bx.psu.edu/repos/pjbriggs/trimmomatic/trimmomatic/0.38.1                                                            |        24 |             16.99 |            7.96 |                12.00 |           66.36
 toolshed.g2.bx.psu.edu/repos/iuc/hisat2/hisat2/2.2.1+galaxy1                                                                    |      3520 |           2054.79 |           13.27 |                20.00 |           66.33
 toolshed.g2.bx.psu.edu/repos/devteam/freebayes/freebayes/1.3.6+galaxy0                                                          |       262 |            273.06 |            8.40 |                13.04 |           66.30
 toolshed.g2.bx.psu.edu/repos/iuc/funannotate_predict/funannotate_predict/1.8.15+galaxy5                                         |        91 |            264.23 |            7.95 |                12.00 |           66.25
 toolshed.g2.bx.psu.edu/repos/iuc/medaka_consensus_pipeline/medaka_consensus_pipeline/1.4.4+galaxy1                              |        10 |              1.39 |            7.94 |                12.00 |           66.15
 toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_CollectRnaSeqMetrics/3.1.1.0                                                 |        24 |              4.57 |            7.93 |                12.00 |           66.05
 toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.28+galaxy0                                                                 |       316 |            869.10 |           21.05 |                32.00 |           65.78
 toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bam_compare/deeptools_bam_compare/3.5.4+galaxy0                                |        55 |             14.35 |           15.70 |                24.00 |           65.41
 toolshed.g2.bx.psu.edu/repos/lparsons/htseq_count/htseq_count/0.9.1                                                             |        16 |             21.37 |           20.88 |                32.00 |           65.24
 toolshed.g2.bx.psu.edu/repos/iuc/macs2/macs2_callpeak/2.2.9.1+galaxy0                                                           |       400 |            334.38 |            9.73 |                15.00 |           64.85
 toolshed.g2.bx.psu.edu/repos/iuc/dada2_dada/dada2_dada/1.30.0+galaxy0                                                           |        64 |            276.99 |            6.48 |                10.00 |           64.78
 toolshed.g2.bx.psu.edu/repos/genouest/helixer/helixer/0.3.3+galaxy1                                                             |        42 |            182.82 |           19.25 |                30.00 |           64.17
 toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fastq_dump/3.1.1+galaxy1                                                             |       904 |           2008.60 |           12.77 |                20.00 |           63.87
 toolshed.g2.bx.psu.edu/repos/iuc/hisat2/hisat2/2.2.1+galaxy0                                                                    |         6 |              2.28 |           12.75 |                20.00 |           63.76
 toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.4.5+galaxy0                                                              |        72 |             58.14 |           12.63 |                20.00 |           63.14
 toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.5.0+galaxy0                                                              |       267 |            239.04 |           12.52 |                20.00 |           62.60
 toolshed.g2.bx.psu.edu/repos/iuc/qualimap_rnaseq/qualimap_rnaseq/2.3+galaxy0                                                    |        57 |             11.01 |            7.50 |                12.00 |           62.54
 toolshed.g2.bx.psu.edu/repos/devteam/ncbi_blast_plus/ncbi_blastn_wrapper/2.10.1+galaxy2                                         |        54 |             65.29 |           25.01 |                40.00 |           62.52
 toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fasterq_dump/3.1.1+galaxy1                                                           |      1230 |           2236.66 |           18.97 |                30.40 |           62.41
 toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.7.11a+galaxy0                                                             |       122 |            137.63 |           30.97 |                50.00 |           61.94
 toolshed.g2.bx.psu.edu/repos/iuc/humann/humann/3.7+galaxy0                                                                      |        13 |             23.27 |           55.56 |                90.00 |           61.73
 toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.7.5b                                                                      |         6 |              1.08 |           30.62 |                50.00 |           61.23
 toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.43.0+galaxy0                                                               |        58 |             37.13 |            7.34 |                12.00 |           61.17
 toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.2+galaxy0                                                                     |        19 |              3.27 |            9.29 |                15.20 |           61.14
 toolshed.g2.bx.psu.edu/repos/devteam/ncbi_blast_plus/ncbi_blastx_wrapper/2.14.1+galaxy2                                         |       155 |           3855.19 |           24.17 |                40.00 |           60.42
 toolshed.g2.bx.psu.edu/repos/iuc/barrnap/barrnap/1.2.2                                                                          |        12 |              8.47 |            6.79 |                11.40 |           59.53
 toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.3.4.1                                                                    |         7 |              1.94 |           11.73 |                20.00 |           58.66
 toolshed.g2.bx.psu.edu/repos/iuc/metaphlan/metaphlan/4.1.1+galaxy3                                                              |       372 |            114.68 |           35.48 |                60.80 |           58.36
 toolshed.g2.bx.psu.edu/repos/iuc/dada2_filterandtrim/dada2_filterAndTrim/1.20+galaxy0                                           |         6 |              2.69 |            5.73 |                10.00 |           57.27
 toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_bam_stat/5.0.3+galaxy0                                                          |        24 |              7.42 |            4.54 |                 8.00 |           56.78
 toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy1                                                                      |       686 |            769.97 |            6.68 |                12.00 |           55.67
 toolshed.g2.bx.psu.edu/repos/bgruening/canu/canu/2.2+galaxy0                                                                    |        55 |            448.79 |           51.16 |                92.00 |           55.61
 toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa/0.7.18                                                                             |       182 |            857.23 |           11.11 |                20.00 |           55.57
 toolshed.g2.bx.psu.edu/repos/devteam/fastq_paired_end_interlacer/fastq_paired_end_interlacer/1.2.0.1                            |         6 |              9.19 |           16.74 |                30.40 |           55.06
 toolshed.g2.bx.psu.edu/repos/devteam/kraken/kraken/1.3.1                                                                        |       201 |            587.11 |           49.43 |                90.00 |           54.93
 toolshed.g2.bx.psu.edu/repos/iuc/trinity_align_and_estimate_abundance/trinity_align_and_estimate_abundance/2.9.1+galaxy1        |         6 |             10.68 |           16.67 |                30.40 |           54.84
 toolshed.g2.bx.psu.edu/repos/iuc/scanpy_filter/scanpy_filter/1.10.2+galaxy2                                                     |         7 |              8.67 |            6.22 |                11.40 |           54.60
 toolshed.g2.bx.psu.edu/repos/iuc/varscan_somatic/varscan_somatic/2.4.3.6                                                        |        25 |            156.53 |            6.55 |                12.00 |           54.59
 toolshed.g2.bx.psu.edu/repos/iuc/snpeff/snpEff/4.3+T.galaxy1                                                                    |        89 |             56.59 |            6.49 |                12.00 |           54.10
 toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0                                                                 |        17 |              6.46 |           17.27 |                32.00 |           53.97
 toolshed.g2.bx.psu.edu/repos/iuc/meryl/meryl/1.3+galaxy6                                                                        |        46 |             47.80 |           70.05 |               130.00 |           53.88
 toolshed.g2.bx.psu.edu/repos/rnateam/sortmerna/bg_sortmerna/2.1b.4                                                              |        34 |             31.97 |           16.53 |                30.70 |           53.86
 toolshed.g2.bx.psu.edu/repos/iuc/metaphlan/metaphlan/4.0.6+galaxy0                                                              |        22 |              5.23 |           32.07 |                60.80 |           52.75
 toolshed.g2.bx.psu.edu/repos/devteam/freebayes/freebayes/1.3.8+galaxy0                                                          |       148 |            161.62 |            6.10 |                11.50 |           52.68
 toolshed.g2.bx.psu.edu/repos/rnateam/chipseeker/chipseeker/1.28.3+galaxy0                                                       |       159 |             25.90 |            4.18 |                 8.00 |           52.30
 toolshed.g2.bx.psu.edu/repos/bgruening/hicexplorer_hicbuildmatrix/hicexplorer_hicbuildmatrix/3.7.5+galaxy0                      |        13 |             77.65 |           82.23 |               160.00 |           51.39
 toolshed.g2.bx.psu.edu/repos/iuc/falco/falco/1.2.4+galaxy0                                                                      |        75 |             14.67 |            5.76 |                11.40 |           50.56
 toolshed.g2.bx.psu.edu/repos/iuc/qualimap_bamqc/qualimap_bamqc/2.3+galaxy0                                                      |       171 |             47.70 |           12.01 |                24.00 |           50.05
 toolshed.g2.bx.psu.edu/repos/iuc/metaphlan/metaphlan/4.0.6+galaxy1                                                              |        17 |              3.81 |           30.25 |                60.80 |           49.75
 toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_heatmap/deeptools_plot_heatmap/3.3.2.0.1                                  |        14 |              5.33 |           12.22 |                25.00 |           48.88
 toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_multi_bam_summary/deeptools_multi_bam_summary/3.5.4+galaxy0                    |        33 |              8.25 |           11.67 |                24.00 |           48.63
 toolshed.g2.bx.psu.edu/repos/bgruening/interproscan/interproscan/5.59-91.0+galaxy3                                              |       453 |           2580.80 |           19.44 |                40.00 |           48.61
 toolshed.g2.bx.psu.edu/repos/bgruening/hicexplorer_hicfindtads/hicexplorer_hicfindtads/3.7.5+galaxy0                            |         7 |              1.11 |            9.72 |                20.00 |           48.61
 toolshed.g2.bx.psu.edu/repos/earlhaminst/lotus2/lotus2/2.32+galaxy0                                                             |        29 |              9.51 |            3.88 |                 8.00 |           48.52
 toolshed.g2.bx.psu.edu/repos/bgruening/pileometh/pileometh/0.5.2+galaxy0                                                        |        11 |              2.46 |           11.61 |                24.00 |           48.37
 toolshed.g2.bx.psu.edu/repos/iuc/medaka_consensus/medaka_consensus/1.7.2+galaxy0                                                |         6 |              8.73 |            7.24 |                15.30 |           47.31
 toolshed.g2.bx.psu.edu/repos/iuc/ivar_consensus/ivar_consensus/1.4.3+galaxy0                                                    |        13 |              4.61 |           14.31 |                30.40 |           47.08
 toolshed.g2.bx.psu.edu/repos/iuc/gtdbtk_classify_wf/gtdbtk_classify_wf/2.3.2+galaxy1                                            |       192 |            251.74 |           57.52 |               122.80 |           46.84
 toolshed.g2.bx.psu.edu/repos/iuc/bcftools_mpileup/bcftools_mpileup/1.15.1+galaxy4                                               |        17 |             67.57 |           12.46 |                26.60 |           46.83
 toolshed.g2.bx.psu.edu/repos/iuc/humann2/humann2/0.11.1.0                                                                       |        31 |            117.18 |           42.13 |                90.00 |           46.81
 toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_heatmap/deeptools_plot_heatmap/3.5.4+galaxy0                              |        81 |             23.48 |           11.52 |                25.00 |           46.08
 toolshed.g2.bx.psu.edu/repos/iuc/feelnc/feelnc/0.2.1+galaxy0                                                                    |        24 |             57.57 |            5.51 |                12.00 |           45.92
 toolshed.g2.bx.psu.edu/repos/bgruening/trim_galore/trim_galore/0.4.3.1                                                          |        74 |             57.61 |            8.71 |                19.00 |           45.82
 toolshed.g2.bx.psu.edu/repos/lparsons/htseq_count/htseq_count/0.9.1+galaxy1                                                     |        98 |             86.58 |           14.37 |                32.00 |           44.91
 toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.3.4.3+galaxy0                                                            |       141 |             26.54 |            8.96 |                20.00 |           44.79
 toolshed.g2.bx.psu.edu/repos/iuc/pilon/pilon/1.20.1                                                                             |        89 |            314.43 |           14.26 |                32.00 |           44.56
 toolshed.g2.bx.psu.edu/repos/iuc/raven/raven/1.8.3+galaxy0                                                                      |        13 |              4.88 |           27.00 |                60.80 |           44.41
 toolshed.g2.bx.psu.edu/repos/rnateam/mafft/rbc_mafft/7.526+galaxy0                                                              |        95 |           3105.76 |           13.49 |                30.40 |           44.38
 toolshed.g2.bx.psu.edu/repos/iuc/featurecounts/featurecounts/2.0.6+galaxy0                                                      |        13 |              1.54 |            3.52 |                 8.00 |           43.94
 toolshed.g2.bx.psu.edu/repos/rnateam/peakachu/peakachu/0.2.0+galaxy0                                                            |        25 |             21.27 |            6.88 |                16.00 |           43.01
 toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1                                                                |        33 |             10.32 |           15.16 |                36.00 |           42.10
 toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy0                                                                 |       251 |             60.39 |            4.78 |                11.40 |           41.92
 toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_heatmap2/ggplot2_heatmap2/3.1.3.1+galaxy0                                              |         6 |              0.92 |            9.89 |                24.00 |           41.22
 toolshed.g2.bx.psu.edu/repos/iuc/scanpy_inspect/scanpy_inspect/1.10.2+galaxy1                                                   |         9 |              2.69 |            7.68 |                19.00 |           40.44
 toolshed.g2.bx.psu.edu/repos/bgruening/diffbind/diffbind/2.10.0                                                                 |        58 |             10.03 |           12.38 |                30.70 |           40.32
 toolshed.g2.bx.psu.edu/repos/devteam/sam_merge/sam_merge2/1.2.0                                                                 |        91 |             46.51 |           12.62 |                32.00 |           39.44
 toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.5.3+galaxy1                                                              |      5044 |           4735.65 |            7.80 |                20.00 |           38.99
 toolshed.g2.bx.psu.edu/repos/galaxyp/maxquant/maxquant/2.0.3.0+galaxy0                                                          |       230 |            409.91 |           22.85 |                60.80 |           37.58
 toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.18                                                                         |      1138 |           1872.06 |           11.03 |                30.00 |           36.78
 toolshed.g2.bx.psu.edu/repos/iuc/gemini_load/gemini_load/0.20.1+galaxy2                                                         |        28 |             25.98 |           14.39 |                40.00 |           35.97
 toolshed.g2.bx.psu.edu/repos/iuc/unicycler/unicycler/0.5.1+galaxy0                                                              |       631 |           2051.17 |           12.51 |                34.02 |           35.92
 toolshed.g2.bx.psu.edu/repos/bgruening/trim_galore/trim_galore/0.4.3.0                                                          |        17 |              9.08 |            6.81 |                19.00 |           35.86
 toolshed.g2.bx.psu.edu/repos/devteam/fastq_paired_end_joiner/fastq_paired_end_joiner/2.0.1.1+galaxy0                            |       177 |            311.31 |            4.08 |                11.40 |           35.82
 toolshed.g2.bx.psu.edu/repos/devteam/fastq_paired_end_interlacer/fastq_paired_end_interlacer/1.2.0.1+galaxy0                    |       120 |            120.89 |           10.86 |                30.40 |           35.72
 toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0                                                          |         7 |              1.06 |            5.41 |                15.30 |           35.35
 toolshed.g2.bx.psu.edu/repos/iuc/trinity_align_and_estimate_abundance/trinity_align_and_estimate_abundance/2.15.1+galaxy0       |       363 |            154.13 |           10.48 |                30.40 |           34.46
 toolshed.g2.bx.psu.edu/repos/devteam/ncbi_blast_plus/ncbi_blastp_wrapper/2.14.1+galaxy2                                         |       179 |           3230.58 |           10.46 |                30.40 |           34.40
 toolshed.g2.bx.psu.edu/repos/iuc/varscan_mpileup/varscan_mpileup/2.4.3.1                                                        |        15 |              4.45 |            4.09 |                12.00 |           34.05
 toolshed.g2.bx.psu.edu/repos/iuc/macs2/macs2_callpeak/2.1.1.20160309.6                                                          |        41 |              8.27 |            4.97 |                15.00 |           33.17
 toolshed.g2.bx.psu.edu/repos/iuc/dexseq/dexseq_count/1.48.0+galaxy0                                                             |        29 |             77.61 |            8.29 |                25.00 |           33.15
 toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MarkDuplicates/2.18.2.4                                                      |        56 |             37.06 |            6.62 |                20.00 |           33.10
 toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1                                                                 |       105 |             15.32 |            3.73 |                11.40 |           32.76
 toolshed.g2.bx.psu.edu/repos/iuc/hmmer_hmmsearch/hmmer_hmmsearch/3.4+galaxy0                                                    |         8 |             28.82 |            3.21 |                10.00 |           32.12
 toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy1                                                                 |      7186 |           1403.52 |            3.63 |                11.40 |           31.83
 toolshed.g2.bx.psu.edu/repos/bgruening/hicexplorer_hicmergematrixbins/hicexplorer_hicmergematrixbins/3.7.5+galaxy0              |        37 |              7.65 |           25.19 |                80.00 |           31.49
 toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.11+galaxy1                                                                |       117 |            146.24 |            3.52 |                11.40 |           30.86
 toolshed.g2.bx.psu.edu/repos/iuc/filtlong/filtlong/0.2.1+galaxy0                                                                |        31 |             17.37 |           15.26 |                50.00 |           30.52
 toolshed.g2.bx.psu.edu/repos/iuc/deseq2/deseq2/2.11.40.7+galaxy2                                                                |        37 |              6.07 |            2.44 |                 8.00 |           30.48
 toolshed.g2.bx.psu.edu/repos/iuc/orthofinder_onlygroups/orthofinder_onlygroups/2.5.5+galaxy0                                    |        20 |            124.06 |            9.35 |                30.70 |           30.47
 toolshed.g2.bx.psu.edu/repos/iuc/strelka_germline/strelka_germline/2.9.10+galaxy0                                               |        36 |              7.16 |            3.62 |                12.00 |           30.19
 toolshed.g2.bx.psu.edu/repos/iuc/fasttree/fasttree/2.1.10+galaxy1                                                               |        64 |            264.18 |            8.85 |                28.63 |           29.73
 toolshed.g2.bx.psu.edu/repos/iuc/anndata_manipulate/anndata_manipulate/0.10.9+galaxy0                                           |        11 |              8.40 |            8.73 |                36.00 |           29.72
 toolshed.g2.bx.psu.edu/repos/iuc/pear/iuc_pear/0.9.6.4                                                                          |        32 |              5.35 |            7.84 |                26.60 |           29.49
 toolshed.g2.bx.psu.edu/repos/bgruening/nextdenovo/nextdenovo/2.5.0+galaxy0                                                      |         9 |              1.80 |           37.61 |               128.00 |           29.38
 toolshed.g2.bx.psu.edu/repos/iuc/deseq2/deseq2/2.11.40.8+galaxy0                                                                |        69 |             13.73 |            2.28 |                 8.00 |           28.52
 toolshed.g2.bx.psu.edu/repos/lparsons/htseq_count/htseq_count/2.0.5+galaxy0                                                     |      1868 |           2952.17 |            9.02 |                32.00 |           28.18
 toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_compute_matrix/deeptools_compute_matrix/3.5.4+galaxy0                          |       297 |            353.05 |            8.41 |                30.00 |           28.04
 toolshed.g2.bx.psu.edu/repos/iuc/optitype/optitype/1.3.5+galaxy0                                                                |         6 |             69.11 |           70.76 |               256.00 |           27.64
 toolshed.g2.bx.psu.edu/repos/iuc/transdecoder/transdecoder/5.5.0+galaxy2                                                        |       212 |            148.60 |            2.20 |                 8.00 |           27.52
 toolshed.g2.bx.psu.edu/repos/bgruening/salmon/salmon/1.10.1+galaxy2                                                             |       342 |            136.09 |           18.92 |                70.00 |           27.03
 toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.36.2+galaxy1                                                               |         9 |              1.11 |            3.22 |                12.00 |           26.85
 toolshed.g2.bx.psu.edu/repos/iuc/stringtie/stringtie/2.2.1+galaxy0                                                              |        11 |              1.67 |            6.61 |                25.00 |           26.45
 toolshed.g2.bx.psu.edu/repos/iuc/snpsift/snpSift_filter/4.3+t.galaxy1                                                           |        40 |              5.13 |            4.72 |                18.00 |           26.25
 toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.69                                                                         |       199 |             32.62 |            2.97 |                11.40 |           26.06
 toolshed.g2.bx.psu.edu/repos/iuc/tbprofiler/tb_profiler_profile/6.2.1+galaxy1                                                   |        68 |             10.47 |            2.99 |                11.50 |           26.04
 toolshed.g2.bx.psu.edu/repos/iuc/mummer_mummer/mummer_mummer/4.0.0rc1+galaxy3                                                   |         7 |             10.43 |            2.06 |                 8.00 |           25.70
 toolshed.g2.bx.psu.edu/repos/iuc/checkm_taxonomy_wf/checkm_taxonomy_wf/1.2.3+galaxy0                                            |        10 |              1.83 |            2.04 |                 8.00 |           25.51
 toolshed.g2.bx.psu.edu/repos/iuc/stringtie/stringtie/2.2.1+galaxy1                                                              |         6 |              1.41 |            6.37 |                25.00 |           25.47
 toolshed.g2.bx.psu.edu/repos/mbernt/maxbin2/maxbin2/2.2.7+galaxy4                                                               |       101 |             53.73 |           12.20 |                48.00 |           25.42
 toolshed.g2.bx.psu.edu/repos/iuc/snpeff/snpEff_download/4.3+T.galaxy2                                                           |        17 |             14.08 |            3.04 |                12.00 |           25.33
 toolshed.g2.bx.psu.edu/repos/iuc/lofreq_call/lofreq_call/2.1.5+galaxy2                                                          |       813 |           1435.27 |            1.98 |                 8.00 |           24.78
 toolshed.g2.bx.psu.edu/repos/iuc/lofreq_call/lofreq_call/2.1.5+galaxy3                                                          |         7 |             29.72 |            1.96 |                 8.00 |           24.48
 toolshed.g2.bx.psu.edu/repos/iuc/snippy/snippy/3.2                                                                              |        20 |              3.10 |            2.91 |                12.00 |           24.27
 toolshed.g2.bx.psu.edu/repos/bgruening/hicexplorer_hiccorrectmatrix/hicexplorer_hiccorrectmatrix/3.7.5+galaxy0                  |        35 |             10.05 |           15.39 |                64.00 |           24.05
 toolshed.g2.bx.psu.edu/repos/devteam/fastq_paired_end_deinterlacer/fastq_paired_end_deinterlacer/1.1.5                          |        25 |             74.46 |            7.22 |                30.40 |           23.75
 toolshed.g2.bx.psu.edu/repos/rnateam/chipseeker/chipseeker/1.18.0+galaxy1                                                       |         9 |              0.97 |            1.89 |                 8.00 |           23.62
 toolshed.g2.bx.psu.edu/repos/rnateam/mirdeep2_mapper/rbc_mirdeep2_mapper/2.0.0                                                  |        32 |              4.89 |            5.72 |                24.75 |           23.60
 toolshed.g2.bx.psu.edu/repos/iuc/metaphlan/metaphlan/3.0.8+galaxy0                                                              |       108 |             21.12 |           14.32 |                60.80 |           23.55
 toolshed.g2.bx.psu.edu/repos/iuc/isoformswitchanalyzer/isoformswitchanalyzer/1.20.0+galaxy5                                     |        12 |              1.88 |            2.35 |                10.00 |           23.50
 toolshed.g2.bx.psu.edu/repos/iuc/stringtie/stringtie/1.3.6                                                                      |        11 |              3.58 |            5.79 |                25.00 |           23.18
 toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/4.1.2                                                                              |         7 |             53.56 |           17.82 |                80.00 |           22.28
 toolshed.g2.bx.psu.edu/repos/iuc/rnaquast/rna_quast/2.3.0+galaxy0                                                               |        33 |            120.38 |            8.84 |                40.00 |           22.09
 toolshed.g2.bx.psu.edu/repos/rnateam/mirdeep2_mapper/rbc_mirdeep2_mapper/2.0.0.8.1                                              |       102 |             29.63 |            5.86 |                27.61 |           21.72
 toolshed.g2.bx.psu.edu/repos/devteam/tophat2/tophat2/2.1.1                                                                      |        79 |             79.83 |           19.09 |                90.00 |           21.21
 toolshed.g2.bx.psu.edu/repos/nml/metaspades/metaspades/3.15.5+galaxy2                                                           |       129 |           1249.16 |           60.58 |               246.90 |           20.91
 toolshed.g2.bx.psu.edu/repos/iuc/dada2_filterandtrim/dada2_filterAndTrim/1.30.0+galaxy0                                         |        11 |              1.42 |            2.08 |                10.00 |           20.79
 toolshed.g2.bx.psu.edu/repos/devteam/cuffdiff/cuffdiff/2.2.1.7                                                                  |         9 |             63.41 |            8.30 |                40.00 |           20.75
 toolshed.g2.bx.psu.edu/repos/iuc/stringtie/stringtie/2.2.3+galaxy0                                                              |       370 |            142.94 |            5.07 |                25.00 |           20.27
 toolshed.g2.bx.psu.edu/repos/peterjc/mira_assembler/mira_assembler/0.0.11                                                       |       106 |            203.54 |            4.76 |                24.00 |           19.82
 toolshed.g2.bx.psu.edu/repos/iuc/dada2_learnerrors/dada2_learnErrors/1.30.0+galaxy0                                             |        53 |             22.02 |            1.92 |                10.00 |           19.24
 toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0                                                                 |        74 |              9.93 |            2.17 |                11.40 |           18.99
 toolshed.g2.bx.psu.edu/repos/devteam/cufflinks/cufflinks/2.2.1.4                                                                |        76 |            405.30 |            5.44 |                30.00 |           18.14
 toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.7.1+galaxy0                                                                      |       533 |            629.12 |           14.39 |                80.00 |           17.99
 toolshed.g2.bx.psu.edu/repos/iuc/red/red/2018.09.10+galaxy1                                                                     |        15 |             14.69 |            6.05 |                35.00 |           17.29
 toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bam_coverage/deeptools_bam_coverage/3.5.4+galaxy0                              |       755 |            160.88 |            4.14 |                24.00 |           17.26
 toolshed.g2.bx.psu.edu/repos/iuc/unicycler/unicycler/0.5.0+galaxy1                                                              |        65 |            109.96 |            4.75 |                28.00 |           16.96
 toolshed.g2.bx.psu.edu/repos/iuc/spades_metaplasmidspades/spades_metaplasmidspades/3.15.5+galaxy2                               |         8 |             49.05 |           38.28 |               256.25 |           16.84
 toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.41.0+galaxy0                                                               |        30 |              3.07 |            2.01 |                12.00 |           16.79
 toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bigwig_compare/deeptools_bigwig_compare/3.5.4+galaxy0                          |        64 |             15.50 |            4.03 |                24.00 |           16.78
 toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.5.0+galaxy0                                                                      |        59 |             37.61 |           13.10 |                80.00 |           16.37
 toolshed.g2.bx.psu.edu/repos/lecorguille/xcms_fillpeaks/abims_xcms_fillPeaks/3.12.0+galaxy1                                     |         9 |              1.94 |            5.16 |                32.00 |           16.12
 toolshed.g2.bx.psu.edu/repos/iuc/mitos2/mitos2/2.0.6                                                                            |        57 |              9.80 |            1.92 |                12.00 |           16.04
 toolshed.g2.bx.psu.edu/repos/rnateam/peakachu/peakachu/0.1.0.2                                                                  |        12 |              4.63 |            2.56 |                16.00 |           16.00
 toolshed.g2.bx.psu.edu/repos/nml/spades/spades/3.12.0+galaxy1                                                                   |        49 |             60.61 |           16.57 |               104.08 |           15.89
 toolshed.g2.bx.psu.edu/repos/iuc/length_and_gc_content/length_and_gc_content/0.1.2                                              |        52 |              8.66 |            1.58 |                10.00 |           15.80
 toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.10.9+galaxy0                                                 |        19 |              6.11 |            2.50 |                16.00 |           15.61
 toolshed.g2.bx.psu.edu/repos/devteam/cuffdiff/cuffdiff/2.2.1.6                                                                  |        13 |             15.91 |            6.22 |                40.00 |           15.56
 toolshed.g2.bx.psu.edu/repos/devteam/ncbi_blast_plus/ncbi_tblastx_wrapper/2.14.1+galaxy2                                        |       102 |           4064.39 |            9.43 |                60.80 |           15.51
 toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.42.0+galaxy1                                                               |        43 |              5.40 |            1.82 |                12.00 |           15.17
 toolshed.g2.bx.psu.edu/repos/iuc/spades_plasmidspades/spades_plasmidspades/3.15.5+galaxy2                                       |        55 |            789.47 |           29.35 |               158.18 |           14.91
 toolshed.g2.bx.psu.edu/repos/iuc/metabat2/metabat2/2.15+galaxy2                                                                 |        27 |              4.83 |            7.11 |                48.00 |           14.81
 toolshed.g2.bx.psu.edu/repos/iuc/abricate/abricate/1.0.1                                                                        |        89 |            204.99 |            4.42 |                30.40 |           14.53
 toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MarkDuplicates/3.1.1.0                                                       |       411 |            126.82 |            2.89 |                20.00 |           14.46
 toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fastq_dump/2.11.0+galaxy0                                                            |        14 |              3.47 |            2.88 |                20.00 |           14.40
 toolshed.g2.bx.psu.edu/repos/chemteam/gmx_em/gmx_em/2022+galaxy0                                                                |         6 |              0.91 |            1.10 |                 8.00 |           13.78
 toolshed.g2.bx.psu.edu/repos/rnateam/graphclust_nspdk/nspdk_sparse/9.2.3                                                        |        11 |              4.06 |            2.18 |                16.00 |           13.63
 toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_coverage/deeptools_plot_coverage/3.5.4+galaxy0                            |        41 |            195.14 |            2.64 |                20.00 |           13.20
 toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/peptide_shaker/2.0.33+galaxy1                                                |        14 |             59.20 |           11.60 |                90.00 |           12.88
 toolshed.g2.bx.psu.edu/repos/devteam/cufflinks/cufflinks/2.2.1.3                                                                |        32 |             20.88 |            3.84 |                30.00 |           12.80
 toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_searchcv/sklearn_searchcv/1.0.11.0                                               |        62 |             40.26 |            1.53 |                12.00 |           12.79
 toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MarkDuplicates/2.18.2.2                                                      |        28 |              9.83 |            2.53 |                20.00 |           12.64
 toolshed.g2.bx.psu.edu/repos/bgruening/repeat_masker/repeatmasker_wrapper/4.0.7+galaxy2                                         |        22 |             30.11 |            4.97 |                40.00 |           12.43
 toolshed.g2.bx.psu.edu/repos/iuc/shovill/shovill/1.1.0+galaxy1                                                                  |        75 |             18.26 |           13.07 |               114.67 |           12.42
 toolshed.g2.bx.psu.edu/repos/iuc/megahit/megahit/1.2.9+galaxy1                                                                  |       296 |           1161.89 |            9.83 |                80.00 |           12.29
 toolshed.g2.bx.psu.edu/repos/iuc/jcvi_gff_stats/jcvi_gff_stats/0.8.4                                                            |        16 |              5.34 |            0.98 |                 8.00 |           12.25
 toolshed.g2.bx.psu.edu/repos/recetox/recetox_aplcms_align_features/recetox_aplcms_align_features/0.13.3+galaxy0                 |         8 |             29.51 |            1.84 |                15.20 |           12.13
 toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_multi_bigwig_summary/deeptools_multi_bigwig_summary/3.5.4+galaxy0              |        26 |             12.18 |            4.81 |                40.00 |           12.03
 toolshed.g2.bx.psu.edu/repos/bgruening/keras_train_and_eval/keras_train_and_eval/1.0.11.0                                       |        13 |             26.55 |            1.80 |                15.20 |           11.83
 toolshed.g2.bx.psu.edu/repos/devteam/cuffquant/cuffquant/2.2.1.1                                                                |         6 |              5.32 |            2.33 |                20.00 |           11.67
 toolshed.g2.bx.psu.edu/repos/iuc/rnaspades/rnaspades/3.15.5+galaxy2                                                             |        33 |            114.66 |           39.94 |               340.91 |           11.62
 toolshed.g2.bx.psu.edu/repos/bgruening/antismash/antismash/6.1.1+galaxy1                                                        |      1997 |           2585.17 |           10.00 |                90.00 |           11.11
 toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_intersectbed/2.30.0+galaxy1                                                  |        52 |              8.68 |            4.44 |                40.00 |           11.10
 toolshed.g2.bx.psu.edu/repos/rnateam/mafft/rbc_mafft/7.520+galaxy0                                                              |         8 |             13.98 |            3.35 |                30.40 |           11.01
 toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_fingerprint/deeptools_plot_fingerprint/3.5.4+galaxy0                      |        25 |             27.70 |            2.20 |                20.00 |           11.01
 toolshed.g2.bx.psu.edu/repos/bgruening/repeat_masker/repeatmasker_wrapper/4.1.1                                                 |        12 |             14.48 |            4.39 |                40.00 |           10.99
 toolshed.g2.bx.psu.edu/repos/bgruening/hicexplorer_hicpca/hicexplorer_hicpca/3.7.5+galaxy0                                      |        46 |              8.56 |           15.99 |               150.00 |           10.66
 toolshed.g2.bx.psu.edu/repos/iuc/mitos2/mitos2/2.1.9+galaxy0                                                                    |      1970 |           2186.29 |            1.26 |                12.00 |           10.50
 toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_heatmap/deeptools_plot_heatmap/3.5.1.0.1                                  |        15 |              2.30 |            2.62 |                25.00 |           10.46
 toolshed.g2.bx.psu.edu/repos/csbl/repeatmodeler/repeatmodeler/2.0.5+galaxy0                                                     |        95 |           2552.20 |            3.16 |                30.40 |           10.41
 toolshed.g2.bx.psu.edu/repos/galaxyp/maxquant/maxquant/1.6.10.43+galaxy3                                                        |        30 |             11.95 |            6.26 |                60.80 |           10.29
 toolshed.g2.bx.psu.edu/repos/chemteam/gmx_sim/gmx_sim/2022+galaxy0                                                              |       141 |           3753.45 |            3.08 |                30.40 |           10.12
 toolshed.g2.bx.psu.edu/repos/lecorguille/xcms_retcor/abims_xcms_retcor/3.12.0+galaxy1                                           |        17 |              2.26 |            3.23 |                32.00 |           10.10
 toolshed.g2.bx.psu.edu/repos/iuc/vsearch/vsearch_clustering/2.8.3.0                                                             |         8 |             55.70 |            0.80 |                 8.00 |            9.99
 toolshed.g2.bx.psu.edu/repos/bgruening/bigwig_to_bedgraph/bigwig_to_bedgraph/0.1.0                                              |         7 |              0.73 |            1.18 |                12.00 |            9.84
 toolshed.g2.bx.psu.edu/repos/iuc/edger/edger/3.36.0+galaxy5                                                                     |        12 |              1.61 |            1.83 |                19.00 |            9.65
 toolshed.g2.bx.psu.edu/repos/bgruening/hicexplorer_hictransform/hicexplorer_hictransform/3.7.5+galaxy0                          |        24 |              4.27 |            5.72 |                60.00 |            9.53
 toolshed.g2.bx.psu.edu/repos/iuc/megahit/megahit/1.2.9+galaxy0                                                                  |       157 |            253.76 |            7.62 |                80.00 |            9.52
 toolshed.g2.bx.psu.edu/repos/csbl/repeatmodeler/repeatmodeler/2.0.4+galaxy1                                                     |        14 |            437.76 |            2.89 |                30.40 |            9.51
 toolshed.g2.bx.psu.edu/repos/iuc/maker/maker/2.31.11+galaxy2                                                                    |       111 |           2121.14 |            6.04 |                64.00 |            9.43
 toolshed.g2.bx.psu.edu/repos/iuc/chira_map/chira_map/1.4.30                                                                     |      1726 |           1136.34 |            6.93 |                80.00 |            8.66
 toolshed.g2.bx.psu.edu/repos/iuc/umi_tools_dedup/umi_tools_dedup/1.1.2+galaxy2                                                  |         7 |              4.89 |            7.79 |                90.00 |            8.65
 toolshed.g2.bx.psu.edu/repos/crs4/prokka/prokka/1.14.6+galaxy1                                                                  |      1084 |            878.10 |            1.73 |                20.00 |            8.64
 toolshed.g2.bx.psu.edu/repos/recetox/recetox_aplcms_generate_feature_table/recetox_aplcms_generate_feature_table/0.13.3+galaxy0 |       136 |            311.62 |            1.31 |                16.00 |            8.21
 toolshed.g2.bx.psu.edu/repos/iuc/funannotate_compare/funannotate_compare/1.8.15+galaxy5                                         |        10 |            194.81 |            3.24 |                40.00 |            8.11
 toolshed.g2.bx.psu.edu/repos/nml/spades/spades/3.15.5+galaxy2                                                                   |       839 |           1712.66 |           14.12 |               142.00 |            7.95
 toolshed.g2.bx.psu.edu/repos/galaxyp/fragpipe/fragpipe/20.0+galaxy3                                                             |         6 |              1.00 |           20.09 |               256.00 |            7.85
 toolshed.g2.bx.psu.edu/repos/iuc/circos/circos/0.69.8+galaxy9                                                                   |        17 |              2.93 |            0.78 |                10.00 |            7.82
 toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_compute_matrix/deeptools_compute_matrix/3.5.1.0.0                              |        23 |             42.08 |            2.33 |                30.00 |            7.78
 toolshed.g2.bx.psu.edu/repos/chemteam/gmx_sim/gmx_sim/2020.4+galaxy1                                                            |        19 |             23.22 |            2.36 |                30.40 |            7.76
 toolshed.g2.bx.psu.edu/repos/iuc/spades_metaviralspades/spades_metaviralspades/3.15.5+galaxy2                                   |        44 |             52.52 |           11.73 |               123.86 |            7.69
 toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.4.6+galaxy0                                                                      |        20 |              4.85 |            6.10 |                80.00 |            7.62
 toolshed.g2.bx.psu.edu/repos/galaxyp/msstats/msstats/4.0.0+galaxy1                                                              |        32 |              5.27 |            1.78 |                24.00 |            7.41
 toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MarkDuplicates/2.18.2.3                                                      |        59 |             23.35 |            1.33 |                20.00 |            6.65
 toolshed.g2.bx.psu.edu/repos/iuc/shovill/shovill/1.1.0+galaxy2                                                                  |       531 |            117.18 |            7.99 |               116.67 |            6.60
 toolshed.g2.bx.psu.edu/repos/bgruening/autodock_vina/docking/1.2.3+galaxy0                                                      |       235 |           3630.54 |            0.76 |                12.00 |            6.34
 toolshed.g2.bx.psu.edu/repos/iuc/porechop/porechop/0.2.4+galaxy0                                                                |      1055 |            631.07 |            2.53 |                40.00 |            6.33
 toolshed.g2.bx.psu.edu/repos/iuc/roary/roary/3.13.0+galaxy3                                                                     |       250 |            378.63 |            5.32 |                91.20 |            5.83
 toolshed.g2.bx.psu.edu/repos/iuc/pharokka/pharokka/1.3.2+galaxy0                                                                |       517 |            129.88 |            1.76 |                31.00 |            5.68
 toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.0.0+galaxy0                                                                      |        14 |              2.19 |            4.45 |                80.00 |            5.56
 toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bam_coverage/deeptools_bam_coverage/3.5.1.0.0                                  |        23 |              2.75 |            1.30 |                24.00 |            5.40
 toolshed.g2.bx.psu.edu/repos/bgruening/augustus/augustus/3.4.0+galaxy2                                                          |       199 |            896.99 |            1.56 |                30.00 |            5.18
 toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.8+galaxy0                                                          |         6 |              5.77 |            0.79 |                15.30 |            5.18
 toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/4.1.4                                                                              |        10 |              4.88 |            4.15 |                80.00 |            5.18
 toolshed.g2.bx.psu.edu/repos/iuc/compleasm/compleasm/0.2.6+galaxy1                                                              |         7 |              8.09 |            2.01 |                40.00 |            5.03
 toolshed.g2.bx.psu.edu/repos/iuc/chira_extract/chira_extract/1.4.31                                                             |         6 |              0.99 |            4.92 |               100.00 |            4.92
 toolshed.g2.bx.psu.edu/repos/iuc/funannotate_clean/funannotate_clean/1.8.15+galaxy5                                             |        28 |             10.34 |            1.95 |                40.00 |            4.89
 toolshed.g2.bx.psu.edu/repos/iuc/concoct/concoct/1.1.0+galaxy2                                                                  |       117 |            391.32 |            2.32 |                48.00 |            4.83
 toolshed.g2.bx.psu.edu/repos/artbio/cap3/cap3/2.0.0                                                                             |       971 |            342.30 |            0.55 |                12.00 |            4.61
 toolshed.g2.bx.psu.edu/repos/devteam/ncbi_blast_plus/ncbi_blastn_wrapper/2.14.1+galaxy1                                         |         7 |             26.68 |            1.84 |                40.00 |            4.60
 toolshed.g2.bx.psu.edu/repos/iuc/iqtree/iqtree/2.3.6+galaxy0                                                                    |        84 |            463.98 |            1.69 |                38.00 |            4.46
 toolshed.g2.bx.psu.edu/repos/bgruening/augustus/augustus/3.4.0+galaxy1                                                          |        68 |            180.31 |            1.25 |                30.00 |            4.16
 toolshed.g2.bx.psu.edu/repos/iuc/umi_tools_dedup/umi_tools_dedup/1.1.5+galaxy0                                                  |         9 |              2.62 |            3.65 |                90.00 |            4.05
 toolshed.g2.bx.psu.edu/repos/iuc/windowmasker/windowmasker_mkcounts/1.0                                                         |         6 |              2.27 |            2.54 |                64.00 |            3.98
 toolshed.g2.bx.psu.edu/repos/iuc/hyphy_slac/hyphy_slac/2.5.47+galaxy0                                                           |        26 |              4.21 |            0.39 |                10.00 |            3.88
 toolshed.g2.bx.psu.edu/repos/bgruening/repeat_masker/repeatmasker_wrapper/4.1.2-p1+galaxy0                                      |         8 |              8.52 |            1.46 |                40.00 |            3.64
 toolshed.g2.bx.psu.edu/repos/iuc/funannotate_annotate/funannotate_annotate/1.8.15+galaxy1                                       |        12 |              5.61 |            1.28 |                42.00 |            3.05
 toolshed.g2.bx.psu.edu/repos/recetox/qcxms_production_run/qcxms_production_run/5.2.1+galaxy3                                    |      5106 |           6916.27 |            0.23 |                 8.00 |            2.84
 toolshed.g2.bx.psu.edu/repos/iuc/chira_merge/chira_merge/1.4.30                                                                 |       964 |            227.03 |            1.67 |                60.00 |            2.79
 toolshed.g2.bx.psu.edu/repos/devteam/clustalw/clustalw/2.1+galaxy1                                                              |       126 |           3045.63 |            0.93 |                34.00 |            2.73
 toolshed.g2.bx.psu.edu/repos/iuc/meme_dreme/meme_dreme/4.11.2.0                                                                 |         6 |             44.14 |            0.40 |                16.00 |            2.47
 toolshed.g2.bx.psu.edu/repos/iuc/medaka_consensus/medaka_consensus/1.0.3+galaxy2                                                |        23 |             62.32 |            0.37 |                15.30 |            2.43
 toolshed.g2.bx.psu.edu/repos/iuc/chira_quantify/chira_quantify/1.4.30                                                           |      1601 |            464.93 |            1.36 |                60.00 |            2.27
 toolshed.g2.bx.psu.edu/repos/iuc/funannotate_annotate/funannotate_annotate/1.8.15+galaxy5                                       |        79 |             29.87 |            0.88 |                42.00 |            2.08
 toolshed.g2.bx.psu.edu/repos/bgruening/autodock_vina/docking/1.1.2+galaxy0                                                      |       124 |             35.31 |            0.24 |                12.00 |            1.99
 toolshed.g2.bx.psu.edu/repos/iuc/raxml/raxml/8.2.12+galaxy1                                                                     |        17 |            315.59 |            1.18 |                60.80 |            1.94
 toolshed.g2.bx.psu.edu/repos/bgruening/mitohifi/mitohifi/3+galaxy0                                                              |        10 |              1.83 |            0.25 |                16.00 |            1.59
 toolshed.g2.bx.psu.edu/repos/iuc/maker/maker/2.31.11                                                                            |         7 |              5.30 |            0.86 |                64.00 |            1.35
 toolshed.g2.bx.psu.edu/repos/iuc/porechop/porechop/0.2.4                                                                        |         7 |              2.53 |            0.52 |                40.00 |            1.29
 toolshed.g2.bx.psu.edu/repos/bgruening/blobtoolkit/blobtoolkit/4.0.7+galaxy2                                                    |        17 |              9.27 |            0.24 |                20.00 |            1.18
 toolshed.g2.bx.psu.edu/repos/iuc/mothur_make_contigs/mothur_make_contigs/1.39.5.1                                               |        57 |             12.81 |            1.04 |                90.00 |            1.16
 toolshed.g2.bx.psu.edu/repos/iuc/mothur_align_seqs/mothur_align_seqs/1.39.5.0                                                   |        18 |              3.03 |            0.85 |                90.00 |            0.94
 toolshed.g2.bx.psu.edu/repos/iuc/iqtree/iqtree/2.1.2+galaxy2                                                                    |        27 |             42.91 |            0.31 |                38.00 |            0.81
(386 rows)

@natefoo
Copy link
Member Author

natefoo commented Oct 29, 2024

Thank you! I am putting together another PR with a lot more tools based on my data and this helps a lot.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants