xxxxxxxxxx
conda activate bioinfo
mamba install bedops
xxxxxxxxxx
# Create a new environment
conda create -y -n heatshock
# Activate the new environment
conda activate heatshock
# Install the software
mamba install fastqc bwa bcftools trimmomatic
xxxxxxxxxx
conda create --name bedops
conda activate bedops
mamba install bedops
xxxxxxxxxx
\documentclass{article}
%We can define the environment in the preamble
\newenvironment{boxed}
{\begin{center}
\begin{tabular}{|p{0.9\textwidth}|}
\hline\\
}
{
\\\\\hline
\end{tabular}
\end{center}
}
%
\begin{document}
Now we can use the \texttt{boxed} environment in our document:
\begin{boxed}
This text is formatted within the \texttt{boxed} environment.
\end{boxed}
This text is typeset outside the \texttt{boxed} environment.
\end{document}