This research project template explores phenotypic variations in Drosophila melanogaster across different environments, aiming to understand the influence of environmental factors on genetic expression. The study entails collecting samples, observing phenotypic traits, and conducting statistical analyses to determine the significance of observed variations.
- Anaconda or Miniconda
Using Conda, you can easily set up your environment and install all necessary dependencies through an environment.yml
file, which specifies the Python version and packages required for the project.
-
Install Anaconda or Miniconda: If not already installed, download and install Anaconda from the Anaconda website or Miniconda from the Miniconda website.
-
Create the Conda Environment: Navigate to the root directory of the project in your terminal or Anaconda Prompt, where the
environment.yml
file is located. Create the environment by running:conda env create -f environment.yml
This command creates a new Conda environment as specified in the
environment.yml
file, including installing all required dependencies. -
Activate the Environment: Once the environment is created, you can activate it using:
conda activate gen_var_study
With the Conda environment set up and activated, you are ready to interact with your project in Jupyter or VSCode. To preview and build the article, we use MyST (install instructions). MyST can be used to start a local web server to preview your content:
myst start
or to build the PDF, use:
myst build --pdf