Decontam identify return code 1

Dear all,

I'm trying to use Decontam plugin, but I'm still obtaining the same error message:

Plugin error from quality-control:

An error was encountered while running Decontam in R (return code 1), please inspect stdout and stderr to learn more.

I know there is a string on this topic, but it's not sufficient for me.

I'm providing my metadata file, my script and also the whole error message.

Any suggestions??
metadata_decontam.tsv (1.1 KB)
15_decontam.tsv (745 Bytes)
15_decontam_ste_596967.tsv (3.6 KB)

Hello @MARTIN_MIHULA, it looks as though your R installation is attempting and failing to load a necessary file. First of all, do you have R installed on that computer outside of a QIIME 2 conda environment? This sometimes causes issues for us because R thinks it knows better than we do what files we should be using (it doesn't).

Second, can you run the following commands both in and out of your environment and post the results here please? echo $PATH, which R, and R --version? Thank you.

Yes, I have! Thank you for very fast answer.

Out of the conda environment:
/opt/conda/anaconda3/bin/R
R version 4.1.1 (2021-08-10)

And inside my environment:
/home/XX/YY/.conda/envs/qiime2-amplicon-2024.2/bin/R
R version 4.2.2 (2022-10-31)

You appear to have a conflicting version of R in your base conda environment, can you please do the following 2 things:

  1. Inside of your conda environment run the command R -e 'print(.libPaths())' and post the results here

  2. Please post your .bashrc file here (should be at /home/username/.bashrc) .

Certainly.

R version 4.2.2 (2022-10-31) -- "Innocent and Trusting"
Copyright (C) 2022 The R Foundation for Statistical Computing
Platform: x86_64-conda-linux-gnu (64-bit)

R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.

  Natural language support but running in an English locale

R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.

Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.

> print(.libPaths())
[1] "/home/XX/YY/.conda/envs/qiime2-amplicon-2024.2/lib/R/library"
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples

# If not running interactively, don't do anything
case $- in
    *i*) ;;
      *) return;;
esac

# don't put duplicate lines or lines starting with space in the history.
# See bash(1) for more options
HISTCONTROL=ignoreboth

# append to the history file, don't overwrite it
shopt -s histappend

# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
HISTSIZE=1000
HISTFILESIZE=2000

# check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.
shopt -s checkwinsize

# If set, the pattern "**" used in a pathname expansion context will
# match all files and zero or more directories and subdirectories.
#shopt -s globstar

# make less more friendly for non-text input files, see lesspipe(1)
#[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"

# set variable identifying the chroot you work in (used in the prompt below)
if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
    debian_chroot=$(cat /etc/debian_chroot)
fi

# set a fancy prompt (non-color, unless we know we "want" color)
:
case "$TERM" in
    xterm-color|*-256color) color_prompt=yes;;
esac

# uncomment for a colored prompt, if the terminal has the capability; turned
# off by default to not distract the user: the focus in a terminal window
# should be on the output of commands, not on the prompt
#force_color_prompt=yes

if [ -n "$force_color_prompt" ]; then
    if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
        # We have color support; assume it's compliant with Ecma-48
        # (ISO/IEC-6429). (Lack of such support is extremely rare, and such
        # a case would tend to support setf rather than setaf.)
        color_prompt=yes
    else
        color_prompt=
    fi
fi

if [ "$color_prompt" = yes ]; then
    PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
else
    PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
fi
unset color_prompt force_color_prompt

# If this is an xterm set the title to user@host:dir
case "$TERM" in
xterm*|rxvt*)
    PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
    ;;
*)
    ;;
esac

# enable color support of ls and also add handy aliases
if [ -x /usr/bin/dircolors ]; then
    test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
    alias ls='ls --color=auto'
    #alias dir='dir --color=auto'
    #alias vdir='vdir --color=auto'

    #alias grep='grep --color=auto'
    #alias fgrep='fgrep --color=auto'
    #alias egrep='egrep --color=auto'
fi

# colored GCC warnings and errors
#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'

# some more ls aliases
#alias ll='ls -l'
#alias la='ls -A'
#alias l='ls -CF'

# Alias definitions.
# You may want to put all your additions into a separate file like
# ~/.bash_aliases, instead of adding them here directly.
# See /usr/share/doc/bash-doc/examples in the bash-doc package.

if [ -f ~/.bash_aliases ]; then
    . ~/.bash_aliases
fi

# enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
if ! shopt -oq posix; then
  if [ -f /usr/share/bash-completion/bash_completion ]; then
    . /usr/share/bash-completion/bash_completion
  elif [ -f /etc/bash_completion ]; then
    . /etc/bash_completion
  fi
fi
source /etc/profile.d/modules.sh

# Alias definitions.
# You may want to put all your additions into a separate file like
# ~/.bash_aliases, instead of adding them here directly.
# See /usr/share/doc/bash-doc/examples in the bash-doc package.

if [ -f ~/.bash_aliases ]; then
    . ~/.bash_aliases
fi

# enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
if ! shopt -oq posix; then
  if [ -f /usr/share/bash-completion/bash_completion ]; then
    . /usr/share/bash-completion/bash_completion
  elif [ -f /etc/bash_completion ]; then
    . /etc/bash_completion
  fi
fi
source /etc/profile.d/modules.sh
module load

# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/opt/conda/anaconda3/bin/conda' 'shell.bash' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
    eval "$__conda_setup"
else
    if [ -f "/opt/conda/anaconda3/etc/profile.d/conda.sh" ]; then
        . "/opt/conda/anaconda3/etc/profile.d/conda.sh"
    else
        export PATH="/opt/conda/anaconda3/bin:$PATH"
    fi
fi
unset __conda_setup
# <<< conda initialize <<<

(END)

Other information:
I work on HPC. I tried to remove R outside of my environment, but I don't have the permission to delete the 4.1.1 version, that's inside of Conda directory, and that's part of a loadable module.
This is everything I have installed to my environment:

_libgcc_mutex             0.1                 conda_forge    conda-forge
_openmp_mutex             4.5                       2_gnu    conda-forge
_r-mutex                  1.0.1               anacondar_1    conda-forge
alsa-lib                  1.2.8                h166bdaf_0    conda-forge
altair                    5.2.0              pyhd8ed1ab_0    conda-forge
anyio                     4.2.0              pyhd8ed1ab_0    conda-forge
appdirs                   1.4.4              pyh9f0ad1d_0    conda-forge
argcomplete               3.2.2              pyhd8ed1ab_0    conda-forge
argh                      0.31.2             pyhd8ed1ab_0    conda-forge
argon2-cffi               23.1.0             pyhd8ed1ab_0    conda-forge
argon2-cffi-bindings      21.2.0           py38h01eb140_4    conda-forge
arrow                     1.3.0              pyhd8ed1ab_0    conda-forge
astor                     0.8.1              pyh9f0ad1d_0    conda-forge
asttokens                 2.4.1              pyhd8ed1ab_0    conda-forge
atpublic                  3.0.1              pyhd8ed1ab_0    conda-forge
attr                      2.5.1                h166bdaf_1    conda-forge
attrs                     23.2.0             pyh71513ae_0    conda-forge
backcall                  0.2.0              pyh9f0ad1d_0    conda-forge
bcrypt                    4.1.2            py38h0cc4f7c_0    conda-forge
beautifulsoup4            4.12.3             pyha770c72_0    conda-forge
bibtexparser              1.4.1              pyhd8ed1ab_0    conda-forge
binutils_impl_linux-64    2.40                 hf600244_0    conda-forge
bioconductor-ancombc      2.0.1             r42hdfd78af_0    bioconda
bioconductor-beachmat     2.14.0            r42hf17093f_1    bioconda
bioconductor-biobase      2.58.0            r42ha9d7317_1    bioconda
bioconductor-biocbaseutils 1.0.0             r42hdfd78af_0    bioconda
bioconductor-biocgenerics 0.44.0            r42hdfd78af_0    bioconda
bioconductor-biocneighbors 1.16.0            r42hf17093f_1    bioconda
bioconductor-biocparallel 1.32.5            r42hf17093f_1    bioconda
bioconductor-biocsingular 1.14.0            r42hf17093f_1    bioconda
bioconductor-biomformat   1.26.0            r42hdfd78af_0    bioconda
bioconductor-biostrings   2.66.0            r42ha9d7317_1    bioconda
bioconductor-dada2        1.26.0            r42hf17093f_1    bioconda
bioconductor-data-packages 20231203             hdfd78af_0    bioconda
bioconductor-decipher     2.26.0            r42ha9d7317_1    bioconda
bioconductor-decontam     1.18.0            r42hdfd78af_0    bioconda
bioconductor-delayedarray 0.24.0            r42ha9d7317_1    bioconda
bioconductor-delayedmatrixstats 1.20.0            r42hdfd78af_0    bioconda
bioconductor-dirichletmultinomial 1.40.0            r42hee7dd41_1    bioconda
bioconductor-genomeinfodb 1.34.9            r42hdfd78af_0    bioconda
bioconductor-genomeinfodbdata 1.2.9             r42hdfd78af_0    bioconda
bioconductor-genomicalignments 1.34.0            r42ha9d7317_1    bioconda
bioconductor-genomicranges 1.50.0            r42ha9d7317_1    bioconda
bioconductor-iranges      2.32.0            r42ha9d7317_1    bioconda
bioconductor-matrixgenerics 1.10.0            r42hdfd78af_0    bioconda
bioconductor-mia          1.6.0             r42hdfd78af_0    bioconda
bioconductor-multiassayexperiment 1.24.0            r42hdfd78af_0    bioconda
bioconductor-multtest     2.54.0            r42ha9d7317_1    bioconda
bioconductor-phyloseq     1.42.0            r42hdfd78af_0    bioconda
bioconductor-rhdf5        2.42.0            r42hbe1951d_1    bioconda
bioconductor-rhdf5filters 1.10.0            r42hf17093f_1    bioconda
bioconductor-rhdf5lib     1.20.0            r42ha9d7317_2    bioconda
bioconductor-rhtslib      2.0.0             r42ha9d7317_1    bioconda
bioconductor-rsamtools    2.14.0            r42hf17093f_1    bioconda
bioconductor-s4vectors    0.36.0            r42ha9d7317_1    bioconda
bioconductor-scaledmatrix 1.6.0             r42hdfd78af_0    bioconda
bioconductor-scater       1.26.0            r42hdfd78af_0    bioconda
bioconductor-scuttle      1.8.0             r42hf17093f_1    bioconda
bioconductor-shortread    1.56.0            r42hf17093f_1    bioconda
bioconductor-singlecellexperiment 1.20.0            r42hdfd78af_0    bioconda
bioconductor-sparsematrixstats 1.10.0            r42hf17093f_1    bioconda
bioconductor-summarizedexperiment 1.28.0            r42hdfd78af_0    bioconda
bioconductor-treeio       1.22.0            r42hdfd78af_0    bioconda
bioconductor-treesummarizedexperiment 2.6.0             r42hdfd78af_0    bioconda
bioconductor-xvector      0.38.0            r42ha9d7317_1    bioconda
bioconductor-zlibbioc     1.44.0            r42ha9d7317_2    bioconda
biom-format               2.1.14           py38h1de0b5d_2    conda-forge
biopython                 1.83             py38h01eb140_0    conda-forge
blast                     2.15.0          pl5321h6f7f691_1    bioconda
bleach                    6.1.0              pyhd8ed1ab_0    conda-forge
bokeh                     1.1.0                    pypi_0    pypi
bowtie2                   2.5.1            py38he00c5e5_2    bioconda
brotli                    1.1.0                hd590300_1    conda-forge
brotli-bin                1.1.0                hd590300_1    conda-forge
brotli-python             1.1.0            py38h17151c0_1    conda-forge
bwidget                   1.9.14               ha770c72_1    conda-forge
bzip2                     1.0.8                hd590300_5    conda-forge
c-ares                    1.26.0               hd590300_0    conda-forge
ca-certificates           2024.3.11            h06a4308_0
cachecontrol              0.14.0             pyhd8ed1ab_0    conda-forge
cached-property           1.5.2                hd8ed1ab_1    conda-forge
cached_property           1.5.2              pyha770c72_1    conda-forge
cairo                     1.16.0            ha61ee94_1014    conda-forge
certifi                   2024.2.2         py38h06a4308_0
cffi                      1.16.0           py38h6d47a40_0    conda-forge
charset-normalizer        3.3.2              pyhd8ed1ab_0    conda-forge
click                     8.1.7           unix_pyh707e725_0    conda-forge
colorama                  0.4.6              pyhd8ed1ab_0    conda-forge
comm                      0.2.1              pyhd8ed1ab_0    conda-forge
conda-pack                0.7.0              pyh6c4a22f_0    conda-forge
contourpy                 1.1.1            py38h7f3f72f_1    conda-forge
coverage                  7.4.4            py38h01eb140_0    conda-forge
cryptography              39.0.0           py38h1724139_0    conda-forge
curl                      7.88.1               h37d81fd_2
cutadapt                  4.6              py38he5da3d1_1    bioconda
cycler                    0.12.1             pyhd8ed1ab_0    conda-forge
cython                    3.0.8            py38h17151c0_0    conda-forge
dbus                      1.13.6               h5008d03_3    conda-forge
deblur                    1.1.1              pyhdfd78af_0    bioconda
debugpy                   1.8.1            py38h17151c0_0    conda-forge
decorator                 4.4.2                      py_0    conda-forge
defusedxml                0.7.1              pyhd8ed1ab_0    conda-forge
dendropy                  4.5.2              pyh3252c3a_0    bioconda
dill                      0.3.8              pyhd8ed1ab_0    conda-forge
dnaio                     1.2.0            py38he5da3d1_0    bioconda
dokdo                     1.16.0                   pypi_0    pypi
dos2unix                  7.4.1                         0    conda-forge
emperor                   1.0.4            py38h578d9bd_1    conda-forge
entrez-direct             16.2                 he881be0_1    bioconda
entrypoints               0.4                pyhd8ed1ab_0    conda-forge
epa-ng                    0.3.8                hdcf5f25_4    bioconda
exceptiongroup            1.2.0              pyhd8ed1ab_2    conda-forge
executing                 2.0.1              pyhd8ed1ab_0    conda-forge
expat                     2.5.0                hcb278e6_1    conda-forge
fastcluster               1.2.6            py38h53bb729_3    conda-forge
fasttree                  2.1.11               h031d066_2    bioconda
fftw                      3.3.10          nompi_hc118613_108    conda-forge
flufl.lock                7.1                pyhd8ed1ab_0    conda-forge
font-ttf-dejavu-sans-mono 2.37                 hab24e00_0    conda-forge
font-ttf-inconsolata      3.000                h77eed37_0    conda-forge
font-ttf-source-code-pro  2.038                h77eed37_0    conda-forge
font-ttf-ubuntu           0.83                 h77eed37_1    conda-forge
fontconfig                2.14.2               h14ed4e7_0    conda-forge
fonts-conda-ecosystem     1                             0    conda-forge
fonts-conda-forge         1                             0    conda-forge
fonttools                 4.49.0           py38h01eb140_0    conda-forge
formulaic                 1.0.1              pyhd8ed1ab_0    conda-forge
fqdn                      1.5.1              pyhd8ed1ab_0    conda-forge
freetype                  2.12.1               h267a509_2    conda-forge
fribidi                   1.0.10               h36c2ea0_0    conda-forge
future                    0.18.3             pyhd8ed1ab_0    conda-forge
gappa                     0.8.0                hdcf5f25_3    bioconda
gawk                      5.3.0                ha916aea_0    conda-forge
gcc_impl_linux-64         13.2.0               h338b0a0_5    conda-forge
gettext                   0.21.1               h27087fc_0    conda-forge
gffutils                  0.10.1             pyh864c0ab_1    bioconda
gfortran_impl_linux-64    13.2.0               h76e1118_5    conda-forge
giflib                    5.2.1                h0b41bf4_3    conda-forge
glib                      2.78.1               hfc55251_0    conda-forge
glib-tools                2.78.1               hfc55251_0    conda-forge
globus-sdk                3.37.0             pyhd8ed1ab_0    conda-forge
glpk                      5.0                  h445213a_0    conda-forge
gmp                       6.3.0                h59595ed_0    conda-forge
gneiss                    0.4.6                    pypi_0    pypi
graphite2                 1.3.13            h58526e2_1001    conda-forge
graphlib-backport         1.0.3              pyhd8ed1ab_0    conda-forge
gsl                       2.7                  he838d99_0    conda-forge
gst-plugins-base          1.21.3               h4243ec0_1    conda-forge
gstreamer                 1.21.3               h25f0c4b_1    conda-forge
gstreamer-orc             0.4.37               hd590300_0    conda-forge
gxx_impl_linux-64         13.2.0               h338b0a0_5    conda-forge
h5py                      3.8.0           nompi_py38h43830be_101    conda-forge
harfbuzz                  6.0.0                h8e241bc_0    conda-forge
hdf5                      1.14.0          nompi_h5231ba7_103    conda-forge
hdmedians                 0.14.2           py38h7f0c24c_4    conda-forge
hmmer                     3.1b2                         3    bioconda
htslib                    1.17                 h6bc39ce_1    bioconda
icu                       70.1                 h27087fc_0    conda-forge
idna                      3.6                pyhd8ed1ab_0    conda-forge
ijson                     3.2.3              pyhd8ed1ab_0    conda-forge
importlib-metadata        7.0.1              pyha770c72_0    conda-forge
importlib_resources       6.1.1              pyhd8ed1ab_0    conda-forge
iniconfig                 2.0.0              pyhd8ed1ab_0    conda-forge
interface_meta            1.3.0              pyhd8ed1ab_0    conda-forge
iow                       1.0.5            py38hcbe9525_3    bioconda
ipykernel                 6.29.2             pyhd33586a_0    conda-forge
ipython                   8.12.2             pyh41d4057_0    conda-forge
ipython_genutils          0.2.0                      py_1    conda-forge
ipywidgets                8.1.2              pyhd8ed1ab_0    conda-forge
iqtree                    2.2.6                h21ec9f0_0    bioconda
isa-l                     2.31.0               hd590300_1    conda-forge
isoduration               20.11.0            pyhd8ed1ab_0    conda-forge
jack                      1.9.22               h11f4161_0    conda-forge
jedi                      0.19.1             pyhd8ed1ab_0    conda-forge
jinja2                    3.1.3              pyhd8ed1ab_0    conda-forge
joblib                    1.3.2              pyhd8ed1ab_0    conda-forge
jpeg                      9e                   h0b41bf4_3    conda-forge
jq                        1.7.1                hd590300_0    conda-forge
jsonlines                 3.0.0              pyhd8ed1ab_0    conda-forge
jsonpointer               2.4              py38h578d9bd_3    conda-forge
jsonschema                4.21.1             pyhd8ed1ab_0    conda-forge
jsonschema-specifications 2023.12.1          pyhd8ed1ab_0    conda-forge
jsonschema-with-format-nongpl 4.21.1             pyhd8ed1ab_0    conda-forge
jupyter_client            7.4.9              pyhd8ed1ab_0    conda-forge
jupyter_core              5.7.1            py38h578d9bd_0    conda-forge
jupyter_events            0.9.0              pyhd8ed1ab_0    conda-forge
jupyter_server            2.12.5             pyhd8ed1ab_0    conda-forge
jupyter_server_terminals  0.5.2              pyhd8ed1ab_0    conda-forge
jupyterlab_pygments       0.3.0              pyhd8ed1ab_1    conda-forge
jupyterlab_widgets        3.0.10             pyhd8ed1ab_0    conda-forge
kernel-headers_linux-64   2.6.32              he073ed8_17    conda-forge
keyutils                  1.6.1                h166bdaf_0    conda-forge
kiwisolver                1.4.5            py38h7f3f72f_1    conda-forge
krb5                      1.20.1               hf9c8cef_0    conda-forge
lame                      3.100             h166bdaf_1003    conda-forge
lcms2                     2.15                 hfd0df8a_0    conda-forge
ld_impl_linux-64          2.40                 h41732ed_0    conda-forge
lerc                      4.0.0                h27087fc_0    conda-forge
libaec                    1.1.2                h59595ed_1    conda-forge
libblas                   3.9.0           20_linux64_openblas    conda-forge
libbrotlicommon           1.1.0                hd590300_1    conda-forge
libbrotlidec              1.1.0                hd590300_1    conda-forge
libbrotlienc              1.1.0                hd590300_1    conda-forge
libcap                    2.66                 ha37c62d_0    conda-forge
libcblas                  3.9.0           20_linux64_openblas    conda-forge
libclang                  15.0.7          default_hb11cfb5_4    conda-forge
libclang13                15.0.7          default_ha2b6cf4_4    conda-forge
libcups                   2.3.3                h36d4200_3    conda-forge
libcurl                   7.88.1               h91b91d3_2
libdb                     6.2.32               h9c3ff4c_0    conda-forge
libdeflate                1.17                 h0b41bf4_0    conda-forge
libedit                   3.1.20191231         he28a2e2_2    conda-forge
libev                     4.33                 hd590300_2    conda-forge
libevent                  2.1.10               h9b69904_4    conda-forge
libexpat                  2.5.0                hcb278e6_1    conda-forge
libffi                    3.4.2                h7f98852_5    conda-forge
libflac                   1.4.3                h59595ed_0    conda-forge
libgcc-devel_linux-64     13.2.0             ha9c7c90_105    conda-forge
libgcc-ng                 13.2.0               h807b86a_5    conda-forge
libgcrypt                 1.10.3               hd590300_0    conda-forge
libgfortran-ng            13.2.0               h69a702a_5    conda-forge
libgfortran5              13.2.0               ha4646dd_5    conda-forge
libglib                   2.78.1               hebfc3b9_0    conda-forge
libgomp                   13.2.0               h807b86a_5    conda-forge
libgpg-error              1.47                 h71f35ed_0    conda-forge
libhwloc                  2.9.1                hd6dc26d_0    conda-forge
libiconv                  1.17                 hd590300_2    conda-forge
libidn2                   2.3.7                hd590300_0    conda-forge
liblapack                 3.9.0           20_linux64_openblas    conda-forge
liblapacke                3.9.0           20_linux64_openblas    conda-forge
libllvm14                 14.0.6               hcd5def8_4    conda-forge
libllvm15                 15.0.7               hadd5161_1    conda-forge
libnghttp2                1.52.0               ha637b67_1
libnsl                    2.0.1                hd590300_0    conda-forge
libogg                    1.3.4                h7f98852_1    conda-forge
libopenblas               0.3.25          pthreads_h413a1c8_0    conda-forge
libopus                   1.3.1                h7f98852_1    conda-forge
libpng                    1.6.42               h2797004_0    conda-forge
libpq                     15.1                 h2baec63_3    conda-forge
libprotobuf               3.20.3               h3eb15da_0    conda-forge
libsanitizer              13.2.0               h7e041cc_5    conda-forge
libsndfile                1.2.2                hc60ed4a_1    conda-forge
libsodium                 1.0.18               h36c2ea0_1    conda-forge
libsqlite                 3.45.1               h2797004_0    conda-forge
libssh2                   1.10.0               haa6b8db_3    conda-forge
libstdcxx-devel_linux-64  13.2.0             ha9c7c90_105    conda-forge
libstdcxx-ng              13.2.0               h7e041cc_5    conda-forge
libsystemd0               252                  h2a991cd_0    conda-forge
libtiff                   4.5.0                h6adf6a1_2    conda-forge
libtool                   2.4.7                h27087fc_0    conda-forge
libudev1                  253                  h0b41bf4_0    conda-forge
libunistring              0.9.10               h7f98852_0    conda-forge
libuuid                   2.38.1               h0b41bf4_0    conda-forge
libvorbis                 1.3.7                h9c3ff4c_0    conda-forge
libwebp-base              1.3.2                hd590300_0    conda-forge
libxcb                    1.13              h7f98852_1004    conda-forge
libxkbcommon              1.5.0                h79f4944_1    conda-forge
libxml2                   2.10.3               hca2bb57_4    conda-forge
libxslt                   1.1.37               h873f0b0_0    conda-forge
libzlib                   1.2.13               hd590300_5    conda-forge
llvmlite                  0.41.1           py38h94a1851_0    conda-forge
lockfile                  0.12.2                     py_1    conda-forge
lxml                      4.9.2            py38h215a2d7_0    conda-forge
lz4                       4.3.3            py38hdcd8cb4_0    conda-forge
lz4-c                     1.9.4                hcb278e6_0    conda-forge
mafft                     7.520                h031d066_3    bioconda
make                      4.3                  hd18ef5c_1    conda-forge
markupsafe                2.1.5            py38h01eb140_0    conda-forge
matplotlib                3.6.0            py38h578d9bd_0    conda-forge
matplotlib-base           3.6.0            py38hb021067_0    conda-forge
matplotlib-inline         0.1.6              pyhd8ed1ab_0    conda-forge
mistune                   3.0.2              pyhd8ed1ab_0    conda-forge
mpfr                      4.2.1                h9458935_0    conda-forge
mpg123                    1.32.4               h59595ed_0    conda-forge
mpi                       1.0                        impi    conda-forge
msgpack-python            1.0.7            py38h7f3f72f_0    conda-forge
munkres                   1.1.4              pyh9f0ad1d_0    conda-forge
mysql-common              8.0.32               h14678bc_0    conda-forge
mysql-libs                8.0.32               h54cf53e_0    conda-forge
natsort                   8.4.0              pyhd8ed1ab_0    conda-forge
nbclassic                 1.0.0              pyhb4ecaf3_1    conda-forge
nbclient                  0.8.0              pyhd8ed1ab_0    conda-forge
nbconvert                 7.16.0             pyhd8ed1ab_0    conda-forge
nbconvert-core            7.16.0             pyhd8ed1ab_0    conda-forge
nbconvert-pandoc          7.16.0             pyhd8ed1ab_0    conda-forge
nbformat                  5.9.2              pyhd8ed1ab_0    conda-forge
ncbi-datasets-pylib       16.4.8             pyhdfd78af_0    bioconda
ncbi-vdb                  3.0.10               hdbdd923_0    bioconda
ncurses                   6.4                  h59595ed_2    conda-forge
nest-asyncio              1.6.0              pyhd8ed1ab_0    conda-forge
networkx                  3.1                pyhd8ed1ab_0    conda-forge
nlopt                     2.7.1            py38haf5dbf8_4    conda-forge
nose                      1.3.7                    pypi_0    pypi
notebook                  6.5.5              pyha770c72_0    conda-forge
notebook-shim             0.2.4              pyhd8ed1ab_0    conda-forge
nspr                      4.35                 h27087fc_0    conda-forge
nss                       3.98                 h1d7d5a4_0    conda-forge
numba                     0.58.1           py38h4144172_0    conda-forge
numpy                     1.24.4           py38h59b608b_0    conda-forge
oniguruma                 6.9.9                hd590300_0    conda-forge
openjdk                   17.0.3               h58dac75_5    conda-forge
openjpeg                  2.5.0                hfec8fc6_2    conda-forge
openssl                   1.1.1w               h7f8727e_0
ossuuid                   1.6.2             hf484d3e_1000    conda-forge
overrides                 7.7.0              pyhd8ed1ab_0    conda-forge
packaging                 23.2               pyhd8ed1ab_0    conda-forge
pandas                    1.5.3            py38hdc8b05c_1    conda-forge
pandoc                    3.1.12.2             ha770c72_0    conda-forge
pandocfilters             1.5.0              pyhd8ed1ab_0    conda-forge
pango                     1.50.14              hd33c08f_0    conda-forge
paramiko                  3.4.0              pyhd8ed1ab_0    conda-forge
parsl                     2023.12.4          pyhd8ed1ab_0    conda-forge
parso                     0.8.3              pyhd8ed1ab_0    conda-forge
patsy                     0.5.3              pyhd8ed1ab_0    conda-forge
pbzip2                    1.1.13               h1fcc475_2    conda-forge
pcre                      8.45                 h9c3ff4c_0    conda-forge
pcre2                     10.40                hc3806b6_0    conda-forge
perl                      5.22.2.1                      0    conda-forge
perl-archive-tar          2.18                          1    bioconda
perl-common-sense         3.74                          0    bioconda
perl-exporter-tiny        0.042                         1    bioconda
perl-json                 2.90                          1    bioconda
perl-json-xs              2.34                          0    bioconda
perl-list-moreutils       0.413                         1    bioconda
perl-threaded             5.32.1               hdfd78af_1    bioconda
perl-uri                  1.71                          0    bioconda
perl-xml-libxml           2.0124                        0    bioconda
perl-xml-namespacesupport 1.11                          0    bioconda
perl-xml-sax              0.99                          0    bioconda
perl-xml-sax-base         1.08                          0    bioconda
pexpect                   4.9.0              pyhd8ed1ab_0    conda-forge
pickleshare               0.7.5                   py_1003    conda-forge
picrust2                  2.5.2              pyhdfd78af_0    bioconda
pigz                      2.8                  h2797004_0    conda-forge
pillow                    9.4.0            py38hde6dc18_1    conda-forge
pip                       24.0               pyhd8ed1ab_0    conda-forge
pixman                    0.43.2               h59595ed_0    conda-forge
pkgutil-resolve-name      1.3.10             pyhd8ed1ab_1    conda-forge
platformdirs              4.2.0              pyhd8ed1ab_0    conda-forge
pluggy                    1.4.0              pyhd8ed1ab_0    conda-forge
ply                       3.11                       py_1    conda-forge
pooch                     1.8.0              pyhd8ed1ab_0    conda-forge
prometheus_client         0.20.0             pyhd8ed1ab_0    conda-forge
prompt-toolkit            3.0.42             pyha770c72_0    conda-forge
prompt_toolkit            3.0.42               hd8ed1ab_0    conda-forge
protobuf                  3.20.3           py38h8dc9893_1    conda-forge
psutil                    5.9.8            py38h01eb140_0    conda-forge
pthread-stubs             0.4               h36c2ea0_1001    conda-forge
ptyprocess                0.7.0              pyhd3deb0d_0    conda-forge
pulseaudio                16.1                 h4ab2085_1    conda-forge
pure_eval                 0.2.2              pyhd8ed1ab_0    conda-forge
pycparser                 2.21               pyhd8ed1ab_0    conda-forge
pyfaidx                   0.8.1.1            pyhdfd78af_0    bioconda
pygments                  2.17.2             pyhd8ed1ab_0    conda-forge
pyjwt                     2.8.0              pyhd8ed1ab_1    conda-forge
pynacl                    1.5.0            py38h01eb140_3    conda-forge
pynndescent               0.5.11             pyhca7485f_0    conda-forge
pyparsing                 3.1.1              pyhd8ed1ab_0    conda-forge
pyqt                      5.15.7           py38ha0d8c90_3    conda-forge
pyqt5-sip                 12.11.0          py38h8dc9893_3    conda-forge
pysocks                   1.7.1              pyha2e5f31_6    conda-forge
pytest                    8.0.0              pyhd8ed1ab_0    conda-forge
pytest-cov                4.1.0              pyhd8ed1ab_0    conda-forge
python                    3.8.15          h257c98d_0_cpython    conda-forge
python-dateutil           2.8.2              pyhd8ed1ab_0    conda-forge
python-fastjsonschema     2.19.1             pyhd8ed1ab_0    conda-forge
python-isal               1.5.3            py38h01eb140_0    conda-forge
python-json-logger        2.0.7              pyhd8ed1ab_0    conda-forge
python_abi                3.8                      4_cp38    conda-forge
pytz                      2024.1             pyhd8ed1ab_0    conda-forge
pyvcf3                    1.0.3              pyhdfd78af_0    bioconda
pyyaml                    6.0.1            py38h01eb140_1    conda-forge
pyzmq                     24.0.1           py38hfc09fa9_1    conda-forge
q2-alignment              2024.2.0         py38hb29662d_0    https://packages.qiime2.org/qiime2/2024.2/amplicon/released
q2-composition            2024.2.0         py38h898cb5b_0    https://packages.qiime2.org/qiime2/2024.2/amplicon/released
q2-cutadapt               2024.2.0         py38he454429_0    https://packages.qiime2.org/qiime2/2024.2/amplicon/released
q2-dada2                  2024.2.0         py38h45c52d9_0    https://packages.qiime2.org/qiime2/2024.2/amplicon/released
q2-deblur                 2024.2.0         py38hbd9627c_0    https://packages.qiime2.org/qiime2/2024.2/amplicon/released
q2-demux                  2024.2.0         py38h2dff133_0    https://packages.qiime2.org/qiime2/2024.2/amplicon/released
q2-diversity              2024.2.0         py38h5585147_0    https://packages.qiime2.org/qiime2/2024.2/amplicon/released
q2-diversity-lib          2024.2.0         py38h0132172_0    https://packages.qiime2.org/qiime2/2024.2/amplicon/released
q2-emperor                2024.2.0         py38h2998407_0    https://packages.qiime2.org/qiime2/2024.2/amplicon/released
q2-feature-classifier     2024.2.0         py38h6e5ac28_0    https://packages.qiime2.org/qiime2/2024.2/amplicon/released
q2-feature-table          2024.2.0         py38hbb62944_0    https://packages.qiime2.org/qiime2/2024.2/amplicon/released
q2-fragment-insertion     2024.2.0         py38ha0d0d06_0    https://packages.qiime2.org/qiime2/2024.2/amplicon/released
q2-longitudinal           2024.2.0         py38h84d39fc_0    https://packages.qiime2.org/qiime2/2024.2/amplicon/released
q2-metadata               2024.2.0         py38h10167e4_0    https://packages.qiime2.org/qiime2/2024.2/amplicon/released
q2-mystery-stew           2024.2.0         py38h4475180_0    https://packages.qiime2.org/qiime2/2024.2/amplicon/released
q2-phylogeny              2024.2.0         py38h5b8e161_0    https://packages.qiime2.org/qiime2/2024.2/amplicon/released
q2-picrust2               2023.2                   py38_0    gavinmdouglas
q2-quality-control        2024.2.0         py38he399304_0    https://packages.qiime2.org/qiime2/2024.2/amplicon/released
q2-quality-filter         2024.2.0         py38h4979185_0    https://packages.qiime2.org/qiime2/2024.2/amplicon/released
q2-sample-classifier      2024.2.0         py38ha69b1e6_0    https://packages.qiime2.org/qiime2/2024.2/amplicon/released
q2-taxa                   2024.2.0         py38h546e279_0    https://packages.qiime2.org/qiime2/2024.2/amplicon/released
q2-types                  2024.2.0         py38h3d406b4_0    https://packages.qiime2.org/qiime2/2024.2/amplicon/released
q2-vsearch                2024.2.0         py38h641eed2_0    https://packages.qiime2.org/qiime2/2024.2/amplicon/released
q2cli                     2024.2.0         py38he0b2c1f_0    https://packages.qiime2.org/qiime2/2024.2/amplicon/released
q2galaxy                  2024.2.0         py38h9bdfde6_0    https://packages.qiime2.org/qiime2/2024.2/amplicon/released
q2templates               2024.2.0         py38hf0712fa_0    https://packages.qiime2.org/qiime2/2024.2/amplicon/released
qiime2                    2024.2.0         py38h1da1538_0    https://packages.qiime2.org/qiime2/2024.2/amplicon/released
qt-main                   5.15.6               h18908ee_6    conda-forge
r-ade4                    1.7_22            r42h316c678_1    conda-forge
r-ape                     5.7_1             r42h08d816e_1    conda-forge
r-askpass                 1.2.0             r42h57805ef_0    conda-forge
r-assertthat              0.2.1             r42hc72bb7e_4    conda-forge
r-backports               1.4.1             r42h57805ef_2    conda-forge
r-base                    4.2.2                ha7d60f8_3    conda-forge
r-base64enc               0.1_3           r42h57805ef_1006    conda-forge
r-beeswarm                0.4.0             r42h57805ef_3    conda-forge
r-bh                      1.84.0_0          r42hc72bb7e_0    conda-forge
r-bibtex                  0.5.1             r42hc72bb7e_1    conda-forge
r-bit                     4.0.5             r42h57805ef_1    conda-forge
r-bit64                   4.0.5             r42h57805ef_2    conda-forge
r-bitops                  1.0_7             r42h57805ef_2    conda-forge
r-blob                    1.2.4             r42hc72bb7e_1    conda-forge
r-boot                    1.3_28.1          r42hc72bb7e_1    conda-forge
r-broom                   1.0.5             r42hc72bb7e_1    conda-forge
r-bslib                   0.6.1             r42hc72bb7e_0    conda-forge
r-cachem                  1.0.8             r42h57805ef_1    conda-forge
r-cairo                   1.6_0             r42h06615bd_1    conda-forge
r-callr                   3.7.3             r42hc72bb7e_1    conda-forge
r-castor                  1.8.0             r42ha503ecb_0    conda-forge
r-cellranger              1.1.0           r42hc72bb7e_1006    conda-forge
r-checkmate               2.3.0             r42h57805ef_0    conda-forge
r-class                   7.3_22            r42h57805ef_1    conda-forge
r-cli                     3.6.2             r42ha503ecb_0    conda-forge
r-clipr                   0.8.0             r42hc72bb7e_2    conda-forge
r-cluster                 2.1.6             r42h61816a4_0    conda-forge
r-codetools               0.2_19            r42hc72bb7e_1    conda-forge
r-colorspace              2.1_0             r42h57805ef_1    conda-forge
r-conflicted              1.2.0             r42h785f33e_1    conda-forge
r-cpp11                   0.4.7             r42hc72bb7e_0    conda-forge
r-crayon                  1.5.2             r42hc72bb7e_2    conda-forge
r-curl                    4.3.3             r42h06615bd_1    conda-forge
r-cvxr                    1.0_12            r42ha503ecb_0    conda-forge
r-data.table              1.14.10           r42h029312a_1    conda-forge
r-dbi                     1.2.2             r42hc72bb7e_0    conda-forge
r-dbplyr                  2.4.0             r42hc72bb7e_0    conda-forge
r-deldir                  2.0_2             r42h61816a4_0    conda-forge
r-desctools               0.99.51           r42hcf54a89_0    conda-forge
r-digest                  0.6.34            r42ha503ecb_0    conda-forge
r-doparallel              1.0.17            r42hc72bb7e_2    conda-forge
r-dorng                   1.8.6             r42hc72bb7e_1    conda-forge
r-dplyr                   1.1.4             r42ha503ecb_0    conda-forge
r-dqrng                   0.3.2             r42ha503ecb_0    conda-forge
r-dtplyr                  1.3.1             r42hc72bb7e_1    conda-forge
r-e1071                   1.7_14            r42ha503ecb_0    conda-forge
r-ecosolver               0.5.5             r42h57805ef_1    conda-forge
r-ellipsis                0.3.2             r42h57805ef_2    conda-forge
r-emmeans                 1.10.0            r42hc72bb7e_0    conda-forge
r-energy                  1.7_11            r42ha503ecb_1    conda-forge
r-estimability            1.4.1             r42hc72bb7e_2    conda-forge
r-evaluate                0.23              r42hc72bb7e_0    conda-forge
r-exact                   3.2               r42hc72bb7e_2    conda-forge
r-expm                    0.999_9           r42hd9ac46e_0    conda-forge
r-fansi                   1.0.6             r42h57805ef_0    conda-forge
r-farver                  2.1.1             r42ha503ecb_2    conda-forge
r-fastmap                 1.1.1             r42ha503ecb_1    conda-forge
r-fnn                     1.1.4             r42ha503ecb_0    conda-forge
r-fontawesome             0.5.2             r42hc72bb7e_0    conda-forge
r-forcats                 1.0.0             r42hc72bb7e_1    conda-forge
r-foreach                 1.5.2             r42hc72bb7e_2    conda-forge
r-foreign                 0.8_86            r42h57805ef_0    conda-forge
r-formatr                 1.14              r42hc72bb7e_1    conda-forge
r-formula                 1.2_5             r42hc72bb7e_1    conda-forge
r-frictionless            1.0.2             r42hc72bb7e_1    conda-forge
r-fs                      1.6.3             r42ha503ecb_0    conda-forge
r-futile.logger           1.4.3           r42hc72bb7e_1005    conda-forge
r-futile.options          1.0.1           r42hc72bb7e_1004    conda-forge
r-gargle                  1.5.2             r42h785f33e_0    conda-forge
r-gbrd                    0.4_11          r42hc72bb7e_1005    conda-forge
r-generics                0.1.3             r42hc72bb7e_2    conda-forge
r-getopt                  1.20.4            r42ha770c72_0    conda-forge
r-ggbeeswarm              0.7.2             r42hc72bb7e_1    conda-forge
r-ggplot2                 3.4.4             r42hc72bb7e_0    conda-forge
r-ggrastr                 1.0.2             r42hc72bb7e_1    conda-forge
r-ggrepel                 0.9.5             r42ha503ecb_0    conda-forge
r-gld                     2.6.6             r42h57805ef_1    conda-forge
r-glue                    1.7.0             r42h57805ef_0    conda-forge
r-gmp                     0.7_4             r42ha503ecb_0    conda-forge
r-googledrive             2.1.1             r42hc72bb7e_1    conda-forge
r-googlesheets4           1.1.1             r42h785f33e_1    conda-forge
r-gridextra               2.3             r42hc72bb7e_1005    conda-forge
r-gsl                     2.1_8             r42h92c42c9_1    conda-forge
r-gtable                  0.3.4             r42hc72bb7e_0    conda-forge
r-haven                   2.5.4             r42ha503ecb_0    conda-forge
r-highr                   0.10              r42hc72bb7e_1    conda-forge
r-hmisc                   5.1_1             r42h61816a4_0    conda-forge
r-hms                     1.1.3             r42hc72bb7e_1    conda-forge
r-htmltable               2.4.2             r42hc72bb7e_0    conda-forge
r-htmltools               0.5.7             r42ha503ecb_0    conda-forge
r-htmlwidgets             1.6.4             r42hc72bb7e_1    conda-forge
r-httr                    1.4.7             r42hc72bb7e_0    conda-forge
r-hwriter                 1.3.2.1           r42hc72bb7e_2    conda-forge
r-ids                     1.0.1             r42hc72bb7e_3    conda-forge
r-igraph                  1.4.2             r42h65ed38e_0    conda-forge
r-interp                  1.1_6             r42hcf54a89_0    conda-forge
r-irlba                   2.3.5.1           r42h316c678_1    conda-forge
r-isoband                 0.2.7             r42ha503ecb_2    conda-forge
r-iterators               1.0.14            r42hc72bb7e_2    conda-forge
r-jpeg                    0.1_10            r42h06615bd_0    conda-forge
r-jquerylib               0.1.4             r42hc72bb7e_2    conda-forge
r-jsonlite                1.8.8             r42h57805ef_0    conda-forge
r-knitr                   1.45              r42hc72bb7e_1    conda-forge
r-labeling                0.4.3             r42hc72bb7e_0    conda-forge
r-lambda.r                1.2.4             r42hc72bb7e_3    conda-forge
r-lattice                 0.22_5            r42h57805ef_0    conda-forge
r-latticeextra            0.6_30            r42hc72bb7e_2    conda-forge
r-lazyeval                0.2.2             r42h57805ef_4    conda-forge
r-lifecycle               1.0.4             r42hc72bb7e_0    conda-forge
r-lme4                    1.1_35.1          r42ha503ecb_0    conda-forge
r-lmertest                3.1_3             r42hc72bb7e_2    conda-forge
r-lmom                    3.0               r42h61816a4_0    conda-forge
r-lubridate               1.9.3             r42h57805ef_0    conda-forge
r-magrittr                2.0.3             r42h57805ef_2    conda-forge
r-mass                    7.3_60.0.1        r42h57805ef_0    conda-forge
r-matrix                  1.6_5             r42h316c678_0    conda-forge
r-matrixstats             1.2.0             r42h57805ef_0    conda-forge
r-memoise                 2.0.1             r42hc72bb7e_2    conda-forge
r-mgcv                    1.9_1             r42h316c678_0    conda-forge
r-mime                    0.12              r42h57805ef_2    conda-forge
r-minqa                   1.2.6             r42hcf54a89_0    conda-forge
r-modelr                  0.1.11            r42hc72bb7e_1    conda-forge
r-munsell                 0.5.0           r42hc72bb7e_1006    conda-forge
r-mvtnorm                 1.2_4             r42hd9ac46e_0    conda-forge
r-naturalsort             0.1.3           r42hc72bb7e_1005    conda-forge
r-nlme                    3.1_164           r42h61816a4_0    conda-forge
r-nloptr                  2.0.3             r42hcf54a89_2    conda-forge
r-nnet                    7.3_19            r42h57805ef_1    conda-forge
r-numderiv                2016.8_1.1        r42hc72bb7e_5    conda-forge
r-openssl                 2.0.5             r42hb1dc35e_0    conda-forge
r-optparse                1.7.4             r42hc72bb7e_0    conda-forge
r-osqp                    0.6.3.2           r42ha503ecb_0    conda-forge
r-permute                 0.9_7             r42hc72bb7e_2    conda-forge
r-pheatmap                1.0.12            r42hc72bb7e_4    conda-forge
r-pillar                  1.9.0             r42hc72bb7e_1    conda-forge
r-pixmap                  0.4_12            r42hc72bb7e_2    conda-forge
r-pkgconfig               2.0.3             r42hc72bb7e_3    conda-forge
r-pkgmaker                0.32.10           r42hc72bb7e_1    conda-forge
r-plogr                   0.2.0           r42hc72bb7e_1005    conda-forge
r-plyr                    1.8.9             r42ha503ecb_0    conda-forge
r-png                     0.1_8             r42h81d01c5_1    conda-forge
r-prettyunits             1.2.0             r42hc72bb7e_0    conda-forge
r-processx                3.8.3             r42h57805ef_0    conda-forge
r-progress                1.2.3             r42hc72bb7e_0    conda-forge
r-proxy                   0.4_27            r42h57805ef_2    conda-forge
r-ps                      1.7.6             r42h57805ef_0    conda-forge
r-purrr                   1.0.2             r42h57805ef_0    conda-forge
r-r6                      2.5.1             r42hc72bb7e_2    conda-forge
r-ragg                    1.2.5             r42hd65d3ba_0    conda-forge
r-rappdirs                0.3.3             r42h57805ef_2    conda-forge
r-rbibutils               2.2.16            r42h57805ef_0    conda-forge
r-rcolorbrewer            1.1_3             r42h785f33e_2    conda-forge
r-rcpp                    1.0.12            r42h7df8631_0    conda-forge
r-rcppannoy               0.0.22            r42ha503ecb_0    conda-forge
r-rcppeigen               0.3.3.9.4         r42h08d816e_0    conda-forge
r-rcpphnsw                0.6.0             r42ha503ecb_0    conda-forge
r-rcppml                  0.3.7             r42ha503ecb_1    conda-forge
r-rcppparallel            5.1.6             r42ha503ecb_1    conda-forge
r-rcppprogress            0.4.2             r42hc72bb7e_3    conda-forge
r-rcurl                   1.98_1.12         r42h133d619_0    conda-forge
r-rdpack                  2.6               r42hc72bb7e_0    conda-forge
r-readr                   2.1.5             r42ha503ecb_0    conda-forge
r-readxl                  1.4.3             r42ha5c9fba_0    conda-forge
r-registry                0.5_1             r42hc72bb7e_4    conda-forge
r-rematch                 2.0.0             r42hc72bb7e_0    conda-forge
r-rematch2                2.1.2             r42hc72bb7e_3    conda-forge
r-reprex                  2.1.0             r42hc72bb7e_0    conda-forge
r-reshape2                1.4.4             r42ha503ecb_3    conda-forge
r-rlang                   1.1.3             r42ha503ecb_0    conda-forge
r-rmarkdown               2.25              r42hc72bb7e_0    conda-forge
r-rmpfr                   0.9_5             r42h5db443f_0    conda-forge
r-rngtools                1.5.2             r42hc72bb7e_2    conda-forge
r-rootsolve               1.8.2.4           r42h61816a4_0    conda-forge
r-rpart                   4.1.23            r42h57805ef_0    conda-forge
r-rspectra                0.16_1            r42h08d816e_2    conda-forge
r-rsqlite                 2.3.4             r42ha503ecb_0    conda-forge
r-rstudioapi              0.15.0            r42hc72bb7e_0    conda-forge
r-rsvd                    1.0.5             r42hc72bb7e_1    conda-forge
r-rtsne                   0.17              r42h7ce84a7_0    conda-forge
r-rvest                   1.0.4             r42hc72bb7e_0    conda-forge
r-sass                    0.4.8             r42ha503ecb_0    conda-forge
r-scales                  1.3.0             r42hc72bb7e_0    conda-forge
r-scs                     3.2.4             r42h316c678_1    conda-forge
r-selectr                 0.4_2             r42hc72bb7e_3    conda-forge
r-sitmo                   2.0.2             r42ha503ecb_2    conda-forge
r-snow                    0.4_4             r42hc72bb7e_2    conda-forge
r-sp                      2.1_3             r42h57805ef_0    conda-forge
r-statmod                 1.5.0             r42hd8f1df9_1    conda-forge
r-stringi                 1.7.12            r42h1ae9187_0    conda-forge
r-stringr                 1.5.1             r42h785f33e_0    conda-forge
r-survival                3.5_8             r42h57805ef_0    conda-forge
r-sys                     3.4.2             r42h57805ef_1    conda-forge
r-systemfonts             1.0.5             r42haf97adc_0    conda-forge
r-textshaping             0.3.6             r42hbb20487_4    conda-forge
r-tibble                  3.2.1             r42h57805ef_2    conda-forge
r-tidyr                   1.3.1             r42ha503ecb_0    conda-forge
r-tidyselect              1.2.0             r42hc72bb7e_1    conda-forge
r-tidytree                0.4.6             r42hc72bb7e_0    conda-forge
r-tidyverse               2.0.0             r42h785f33e_1    conda-forge
r-timechange              0.3.0             r42ha503ecb_0    conda-forge
r-tinytex                 0.49              r42hc72bb7e_1    conda-forge
r-tzdb                    0.4.0             r42ha503ecb_1    conda-forge
r-utf8                    1.2.4             r42h57805ef_0    conda-forge
r-uuid                    1.2_0             r42h57805ef_0    conda-forge
r-uwot                    0.1.16            r42ha503ecb_0    conda-forge
r-vctrs                   0.6.5             r42ha503ecb_0    conda-forge
r-vegan                   2.6_4             r42hd9ac46e_1    conda-forge
r-vipor                   0.4.7             r42hc72bb7e_0    conda-forge
r-viridis                 0.6.5             r42hc72bb7e_0    conda-forge
r-viridislite             0.4.2             r42hc72bb7e_1    conda-forge
r-vroom                   1.6.5             r42ha503ecb_0    conda-forge
r-withr                   3.0.0             r42hc72bb7e_0    conda-forge
r-xfun                    0.42              r42ha503ecb_0    conda-forge
r-xml2                    1.3.3             r42h044e5c7_2    conda-forge
r-xtable                  1.8_4             r42hc72bb7e_5    conda-forge
r-yaml                    2.3.8             r42h57805ef_0    conda-forge
r-yulab.utils             0.1.4             r42hc72bb7e_0    conda-forge
raxml                     8.2.13               h031d066_0    bioconda
readline                  8.2                  h8228510_1    conda-forge
referencing               0.33.0             pyhd8ed1ab_0    conda-forge
requests                  2.31.0             pyhd8ed1ab_0    conda-forge
rescript                  2024.2.0         py38hbae55e2_0    https://packages.qiime2.org/qiime2/2024.2/amplicon/released
rfc3339-validator         0.1.4              pyhd8ed1ab_0    conda-forge
rfc3986-validator         0.1.1              pyh9f0ad1d_0    conda-forge
rpds-py                   0.18.0           py38h0cc4f7c_0    conda-forge
samtools                  1.18                 hd87286a_0    bioconda
scikit-bio                0.5.8            py38h7e4f40d_1    conda-forge
scikit-learn              0.24.1           py38h658cfdd_0    conda-forge
scipy                     1.10.0           py38h10c12cc_2    conda-forge
seaborn                   0.12.2               hd8ed1ab_0    conda-forge
seaborn-base              0.12.2             pyhd8ed1ab_0    conda-forge
sed                       4.8                  he412f7d_0    conda-forge
send2trash                1.8.2              pyh41d4057_0    conda-forge
sepp                      4.3.10           py38h3252c3a_2    bioconda
setproctitle              1.3.3            py38h01eb140_0    conda-forge
setuptools                69.0.3             pyhd8ed1ab_0    conda-forge
simplejson                3.19.2           py38h01eb140_0    conda-forge
sip                       6.7.12           py38h17151c0_0    conda-forge
six                       1.16.0             pyh6c4a22f_0    conda-forge
sniffio                   1.3.0              pyhd8ed1ab_0    conda-forge
sortmerna                 2.0                  he860b03_4    bioconda
soupsieve                 2.5                pyhd8ed1ab_1    conda-forge
stack_data                0.6.2              pyhd8ed1ab_0    conda-forge
statsmodels               0.14.0           py38h7f0c24c_3    conda-forge
sysroot_linux-64          2.12                he073ed8_17    conda-forge
tbb                       2021.9.0             hf52228f_0    conda-forge
tblib                     3.0.0              pyhd8ed1ab_0    conda-forge
terminado                 0.18.0             pyh0d859eb_0    conda-forge
threadpoolctl             3.3.0              pyhc1e730c_0    conda-forge
tinycss2                  1.2.1              pyhd8ed1ab_0    conda-forge
tk                        8.6.13          noxft_h4845f30_101    conda-forge
tktable                   2.10                 h0c5db8f_5    conda-forge
toml                      0.10.2             pyhd8ed1ab_0    conda-forge
tomli                     2.0.1              pyhd8ed1ab_0    conda-forge
tomlkit                   0.12.3             pyha770c72_0    conda-forge
toolz                     0.12.1             pyhd8ed1ab_0    conda-forge
tornado                   6.3.3            py38h01eb140_1    conda-forge
tqdm                      4.66.2             pyhd8ed1ab_0    conda-forge
traitlets                 5.9.0              pyhd8ed1ab_0    conda-forge
typeguard                 2.13.3             pyhd8ed1ab_0    conda-forge
types-python-dateutil     2.8.19.20240106    pyhd8ed1ab_0    conda-forge
typing-extensions         4.9.0                hd8ed1ab_0    conda-forge
typing_extensions         4.9.0              pyha770c72_0    conda-forge
typing_utils              0.1.0              pyhd8ed1ab_0    conda-forge
tzlocal                   2.1                pyh9f0ad1d_0    conda-forge
umap-learn                0.5.5            py38h578d9bd_1    conda-forge
unicodedata2              15.1.0           py38h01eb140_0    conda-forge
unifrac                   1.3              py38hbff2b2d_0    bioconda
unifrac-binaries          1.3.2                hb7a8b62_2    bioconda
uri-template              1.3.0              pyhd8ed1ab_0    conda-forge
urllib3                   1.26.18            pyhd8ed1ab_0    conda-forge
vsearch                   2.22.1               h6a68c12_2    bioconda
wcwidth                   0.2.13             pyhd8ed1ab_0    conda-forge
webcolors                 1.13               pyhd8ed1ab_0    conda-forge
webencodings              0.5.1              pyhd8ed1ab_2    conda-forge
websocket-client          1.7.0              pyhd8ed1ab_0    conda-forge
wget                      1.20.3               ha56f1ee_1    conda-forge
wheel                     0.42.0             pyhd8ed1ab_0    conda-forge
widgetsnbextension        4.0.10             pyhd8ed1ab_0    conda-forge
wrapt                     1.16.0           py38h01eb140_0    conda-forge
xcb-util                  0.4.0                h166bdaf_0    conda-forge
xcb-util-image            0.4.0                h166bdaf_0    conda-forge
xcb-util-keysyms          0.4.0                h166bdaf_0    conda-forge
xcb-util-renderutil       0.3.9                h166bdaf_0    conda-forge
xcb-util-wm               0.4.1                h166bdaf_0    conda-forge
xkeyboard-config          2.38                 h0b41bf4_0    conda-forge
xmltodict                 0.13.0             pyhd8ed1ab_0    conda-forge
xopen                     1.9.0            py38h578d9bd_0    conda-forge
xorg-fixesproto           5.0               h7f98852_1002    conda-forge
xorg-inputproto           2.3.2             h7f98852_1002    conda-forge
xorg-kbproto              1.0.7             h7f98852_1002    conda-forge
xorg-libice               1.0.10               h7f98852_0    conda-forge
xorg-libsm                1.2.3             hd9c2040_1000    conda-forge
xorg-libx11               1.8.4                h0b41bf4_0    conda-forge
xorg-libxau               1.0.11               hd590300_0    conda-forge
xorg-libxdmcp             1.1.3                h7f98852_0    conda-forge
xorg-libxext              1.3.4                h0b41bf4_2    conda-forge
xorg-libxfixes            5.0.3             h7f98852_1004    conda-forge
xorg-libxi                1.7.10               h7f98852_0    conda-forge
xorg-libxrender           0.9.10            h7f98852_1003    conda-forge
xorg-libxt                1.3.0                hd590300_0    conda-forge
xorg-libxtst              1.2.3             h7f98852_1002    conda-forge
xorg-recordproto          1.14.2            h7f98852_1002    conda-forge
xorg-renderproto          0.11.1            h7f98852_1002    conda-forge
xorg-xextproto            7.3.0             h0b41bf4_1003    conda-forge
xorg-xproto               7.0.31            h7f98852_1007    conda-forge
xz                        5.2.6                h166bdaf_0    conda-forge
yaml                      0.2.5                h7f98852_2    conda-forge
yq                        3.2.3              pyhd8ed1ab_0    conda-forge
zeromq                    4.3.5                h59595ed_1    conda-forge
zipp                      3.17.0             pyhd8ed1ab_0    conda-forge
zlib                      1.2.13               hd590300_5    conda-forge
zstandard                 0.22.0           py38ha98ab4e_0    conda-forge
zstd                      1.5.5                hfc55251_0    conda-forge

It certainly looks like inside of your conda environment it is using the correct version of R, do you have permission to tear down and recreate your conda environment? Maybe remove it then run a conda clean --all for safety (this will remove cached packages and force you to redownload them) then recreate the environment. I'm not seeing anything unusual in your .bashrc or anything especially given that in your environment you have the correct R.