Seed legumes are cultivated for their protein-rich seeds, which can be consumed by humans or animals. They do not need nitrogen fertilizers because they can fix atmospheric nitrogen in symbiosis with soil bacteria (rhizobium) in newly-formed root organs called nodules. Legumes play an essential role in the development of more sustainable agriculture and can help mitigate future climate change. However, legumes’ sensitivity to environmental stresses, particularly heat and drought, makes their yields unstable in terms of seed quantity and protein content, hindering their development in cropping systems. With climate change leading to more intense and prolonged periods of heat stress, it is crucial to enhance legumes’ ability to sustain growth and ensure high productivity levels. This PhD project aims to enhance our understanding of the relationship between legume nodulated root systems and associated soil and plant micro-organisms. The ultimate goal is to develop new strategies that can improve nutrient uptake by legumes, especially during periods of heat stress.
Maslard, Corentin, Mustapha Arkoun, Christophe Salon, and Marion Prudent. 2021. “Root Architecture Characterization in Relation to Biomass Allocation and Biological Nitrogen Fixation in a Collection of European Soybean Genotypes.”OCL 28: 48. https://doi.org/10.1051/ocl/2021033.
---comments: false---## Preface {.unnumbered}::: callout-note## Guide being writtenThis guide is still incomplete. The complete repository (documentation, data, script, etc.) will be available shortly at this link: <https://github.com/cmaslard/phd_soybean_2021_2024>.In the meantime, we advise you to complete your reading by visiting [The thesis manuscript](https://1drv.ms/b/s!Aq9vs33-G0z9wfsFkiGfdJDcvK2Ouw?e=uW3vYb-R).:::This is a Quarto book which resume my work during my PhD.**Here are the articles resulting from this research:**- @maslard_root_2021- @maslard2024::::::: {.callout-note collapse="true"}## More informations about my work ::::::: columns::: {.column width="33%"}- [<img src="src/icons8-plante-en-croissance-windows-11-color-96.ico" style="width: 20px; vertical-align: middle;"/> Personal website](https://cmaslard.xyz)- [{{< iconify fa6-solid:envelope >}} Email](mailto:maslard.corentin@gmail.com)- [{{< iconify fa6-brands github >}} Github](https://github.com/cmaslard)- [{{< iconify fa6-brands linkedin >}} Linkedin](https://www.linkedin.com/in/corentin-maslard):::::: {.column width="33%"}- [{{< iconify fa6-brands:orcid >}} ORCID](https://orcid.org/0000-0002-6951-1963)- [{{< iconify fa6-brands:researchgate >}} ResearchGate](https://www.researchgate.net/profile/Corentin-Maslard)- [{{< iconify academicons:google-scholar >}} Google Scholar](https://scholar.google.com/citations?user=TsztyiMAAAAJ&hl)- [{{< iconify fa6-brands square-x-twitter >}} X (Twitter)](https://x.com/cmaslard):::::: {.column width="33%"}- [{{< iconify fa6-brands bluesky >}} Bluesky](https://bsky.app/profile/cmaslard.bsky.social)- [{{< iconify academicons:hal >}} HAL](https://cv.hal.science/corentinmaslard)- [{{< iconify pepicons-pop:cv >}} CV](https://docs.google.com/document/d/1oCgrdjnAJuVjgocx3F2kmlbJxlqa6uWrSgqm5fWRhpA/edit?usp=sharing)::::::::::::::::## Licence {.unnumbered}This document is made available under the terms of the [Licence Creative Commons Attribution - Non Commercial Use - Share Alike 4.0 International](http://creativecommons.org/licenses/by-nc-sa/4.0/).{width="160"}## Package use in this quarto document ```{r}library(renv)library(dplyr)deps <- renv::dependencies(path =".", progress =FALSE, quiet = T)unique_packages <-unique(deps$Package)writeLines(unique_packages, here::here("src/packages_use_in_this_quarto.txt"))data.frame(Package = unique_packages,Version =sapply(unique_packages, function(pkg) {tryCatch(as.character(packageVersion(pkg)), error =function(e) NA) }),stringsAsFactors =FALSE) %>% DT::datatable(.,filter ="top",class ='cell-border stripe',rownames =FALSE)```