Skip to content

Commit 7933177

Browse files
realmarcinclaude
andauthored
Legal full-text access ladder (Unpaywall/CORE/author-request) for #183 (#189)
* Add legal full-text access ladder (Unpaywall/CORE/author-request) for #183 scripts/fulltext_access.py: given a PMID/DOI, tries in order of legality+cost — Europe PMC OA (fullTextXML) -> Unpaywall best OA location (free) -> CORE (needs $CORE_API_KEY, free for public-research orgs) -> and if none, prints an author-request email draft. No gray-area sources (Sci-Hub excluded by design). Verified: OA paper -> europepmc_oa URL; closed-access paper -> NO_LEGAL_OA + author-request draft. Wires into the add-growth-conditions skill workflow (step 3) so closed-access records (the #183 residual) get a legal access attempt + a ready author-request instead of just "paywalled, skip". Directly informed by the deep-research report on nonprofit OA access. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * Run full-text access ladder over the #183 residual + CrossRef author fallback Ran scripts/fulltext_access.py over the 52 records lacking growth conditions: - 30/52 have a legal OA copy — 17 NEWLY accessible via Unpaywall (green/gold OA the earlier Europe-PMC-only sweep never checked), 13 already-seen europepmc_oa (natural/endosymbiont/computational — no cultivation conditions to gain). - 22 have no legal OA -> author-request email drafts in reports/author_requests/. Summary + lists in reports/fulltext_access_183.md. Also: add a CrossRef title/author fallback to the author-request draft so DOI-only records not in Europe PMC (e.g. older or in-press DOIs) still get a populated, send-ready request instead of an empty template. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * Enrich 6 records from OA copies recovered via the access ladder (#183) Applied the access ladder to the 9 cultivable records among the 17 Unpaywall hits; 6 gained real growth conditions from OA full text the earlier Europe-PMC-only sweep had missed: - 000144 Altered Schaedler Flora — BHI/Schaedler's+serum, anaerobic, gnotobiotic (OUP PDF) - 000147 Trichodesmium/Alteromonas — YBC-II seawater, 26C, 14:10 light (PMC mirror) - 000098 Watermelon SynCom8 — NB medium, 37C, 170 rpm, greenhouse pots (BMC PDF) - 000139 Aalborg EBPR — wastewater sludge + CONTINUOUS BioDenipho plant (OUP mirror) - 000043 Maize root — 1/2 MS agar gnotobiotic, 30C, pH 6.0, 16:8 light (PMC mirror) - 000075 Trichoderma lactate — Mandels medium + FED_BATCH membrane bioreactor (EPFL PDF) All source-backed with verbatim evidence snippets; validate + validate-terms pass. 3 no-change (278/284/292): Unpaywall "OA" was a false positive (DOI resolver / repository metadata page, not real full text). Also harden try_unpaywall: reject a best_oa_location that is just the doi.org resolver (Unpaywall marks some Elsevier bronze/hybrid records is_oa but the location redirects to the paywall) — verified it now returns NO_LEGAL_OA for those instead of a false ACCESS. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * Deep legal access sweep + author-request package for the 22 paywalled residuals scripts/access_sweep.py — goes one layer past the per-record ladder for the NO_LEGAL_OA residuals: queries OpenAlex (ALL oa locations, not just Unpaywall's single best_oa_location) + the bioRxiv/medRxiv API (catches 2025+ 10.64898-prefix preprints OpenAlex still lags on) + CORE when $CORE_API_KEY is set. Emits reports/missing_pdfs.md: recovered OA URLs where any exist, else the publisher landing URL as a last-resort pointer for a curator with institutional access. Result: 1/22 recovered (000281 bioRxiv preprint — OA but Cloudflare-gated to bots), 21/22 genuinely paywalled with landing URLs listed. Sci-Hub and other gray-area mirrors deliberately excluded (sibling CultureMech gates them off too). scripts/author_request_index.py — consolidates the 22 author-request drafts into reports/author_requests_index.md with resolved title/journal/likely-corresponding author/landing URL. Corresponding-author emails are NOT machine-resolvable (they live only in the paywalled full text; CrossRef/EPMC don't expose them), so the package is built for a human to open each landing URL, grab the email, and send. Nothing is sent by this script. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * Enrich 000281 (Infant-gut Prebiotic-response SynCom) from bioRxiv OA full text The access sweep recovered this record's source as an OA bioRxiv preprint (doi:10.64898/2026.05.29.728681); added a growth_media block from the Methods: - eGAM (enhanced Gifu Anaerobic Medium) for routine culturing, adjusted M9 minimal medium for metabolic labelling; 37 C; anaerobic (5% CO2, 5% H2, N2 balance) in a Coy anaerobic vinyl chamber; 48 h strain cultures pooled into the six-member SynCom (P. vulgatus, B. breve, B. infantis, E. coli, L. gasseri, R. gnavus), abundance-equalised to OD 0.2 at 5 h. Three verbatim IN_VITRO evidence snippets. Schema + terms validation pass. Clears the one open item from reports/missing_pdfs.md (the sole OA-recovered residual); the remaining 21 stay genuinely paywalled. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * Add undefined-communities tracking log (excluded from KB, logged separately) Policy: kb/communities/ holds only defined communities. Undefined ones (donor-derived faecal/environmental inocula, enrichments, unresolved consortia) are not added to the resource but tracked in reports/undefined_communities.md so the observation + cultivation conditions are preserved. First entry: the donor-derived infant faecal fermentation from the 000281 paper (Cryptobiotix bioreactors, M0017 medium, 5 g/L prebiotics, 37 C / 24 h anaerobic) — the undefined backdrop to the defined SynCom already curated as 000281. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> --------- Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
1 parent 51449bb commit 7933177

37 files changed

Lines changed: 1216 additions & 3 deletions

File tree

.claude/skills/add-growth-conditions/skill.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,15 @@ numerics are floats.
4949
2. Fetch the abstract — Europe PMC core:
5050
`…/webservices/rest/search?query=EXT_ID:<pmid>%20AND%20SRC:MED&format=json&resultType=core`
5151
(DOI: `query=DOI:"<doi>"`).
52-
3. If open-access, fetch Methods from full text: get `pmcid` from the core
53-
result, then `…/webservices/rest/<PMCID>/fullTextXML` (`curl --compressed`).
54-
Optionally WebSearch/WebFetch for the Methods if not OA.
52+
3. Locate legal full text via the access ladder — `scripts/fulltext_access.py
53+
--pmid <pmid>` (or `--doi <doi>`). It tries, in order: **Europe PMC OA**
54+
(`fullTextXML`) → **Unpaywall** best OA location (free) → **CORE** (set
55+
`CORE_API_KEY`) → and if none, prints an **author-request email draft**.
56+
- `ACCESS <method> <url>` → fetch that URL for the Methods (`curl --compressed`
57+
for the EPMC XML).
58+
- `NO_LEGAL_OA` → the paper is closed-access with no legal OA copy; use only
59+
abstract-level conditions, and surface the author-request draft to the
60+
curator. **Never** use Sci-Hub or other gray-area sources.
5561
4. Extract conditions → one `growth_media` entry (+ `cultivation_setup` if a
5662
defined reactor). Insert as new top-level keys (append near end of file);
5763
keep existing content byte-for-byte.

kb/communities/Aalborg_East_Full_Scale_EBPR_Community.yaml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -293,3 +293,46 @@ associated_datasets:
293293
The set of nonredundant contigs was uploaded to the MG-RAST v2 server
294294
(accession number: 4463936.3) and used in local database searches.
295295
explanation: Links this community record to the public MG-RAST metagenome resource.
296+
growth_media:
297+
- name: domestic wastewater (full-scale EBPR activated sludge)
298+
inoculum_source: activated sludge from the aeration tank at Aalborg East WWTP, Denmark
299+
preparation_notes: Municipal EBPR plant fed mainly domestic wastewater; influent phosphorus
300+
10-20 mg P/L with >95% removal and effluent below 0.5 mg P/L. No incubation temperature,
301+
pH, or defined atmosphere reported for this full-scale in situ community.
302+
evidence:
303+
- reference: PMID:22170425
304+
supports: SUPPORT
305+
evidence_source: IN_VIVO
306+
snippet: Activated sludge was taken from the aeration tank at Aalborg East WWTP, Denmark
307+
(57.044565° N, 10.047598° E) on 4 August 2009.
308+
explanation: Identifies the wastewater medium and sampling of activated sludge from the
309+
aeration tank.
310+
- reference: PMID:22170425
311+
supports: SUPPORT
312+
evidence_source: IN_VIVO
313+
snippet: The plant had stable EBPR performance for several years prior to the time of sampling
314+
removing >95% of the incoming P (10-20 mg P l-1) resulting in effluent concentrations
315+
below 0.5 mg P l-1.
316+
explanation: Reports the influent and effluent phosphorus concentrations of the treated
317+
wastewater.
318+
cultivation_setup:
319+
- cultivation_mode: CONTINUOUS
320+
system_type: BIOREACTOR_UNSPECIFIED
321+
instrument_detail: Full-scale BioDenipho activated sludge plant with an anaerobic tank and
322+
a tank alternating between denitrifying anoxic and nitrifying oxic conditions.
323+
notes: Full-scale municipal EBPR wastewater treatment plant serving 100 000 person equivalents;
324+
no temperature, HRT, SRT, pH, or dissolved-oxygen setpoints are reported in the source.
325+
evidence:
326+
- reference: PMID:22170425
327+
supports: SUPPORT
328+
evidence_source: IN_VIVO
329+
snippet: The plant has a biodenipho configuration, which includes an anaerobic tank and a
330+
tank with alternating denitrifying anoxic and nitrifying oxic conditions.
331+
explanation: Describes the reactor configuration and alternating process zones of the
332+
full-scale system.
333+
- reference: PMID:22170425
334+
supports: SUPPORT
335+
evidence_source: IN_VIVO
336+
snippet: The plant treats mainly domestic wastewater and serves 100 000 person equivalents
337+
with an average load of 45 000 person equivalents.
338+
explanation: Establishes the full-scale continuous municipal wastewater treatment operation.

kb/communities/Altered_Schaedler_Flora_Gnotobiotic_Mouse_Community.yaml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,3 +204,39 @@ associated_datasets:
204204
evidence_source: COMPUTATIONAL
205205
snippet: GenBank accession no.
206206
explanation: Supports the table of genome accessions for the ASF members.
207+
growth_media:
208+
- name: brain heart infusion medium or Schaedler's medium supplemented with bovine serum
209+
atmosphere: ANAEROBIC
210+
inoculum_source: mouse-derived bacteria maintained in gnotobiotic mice bred in isolator facilities
211+
preparation_notes: The eight ASF members are cultivated in vitro in complex media (BHI plus serum
212+
or Schaedler's medium plus serum); only the two lactobacilli grow aerobically, while the
213+
remaining members are obligate anaerobes, and no defined medium exists for the EOS members
214+
(ASF356, 492, 500, 502). In vivo the community is maintained in gnotobiotic mice continually
215+
bred in isolator facilities.
216+
evidence:
217+
- reference: PMID:26323627
218+
supports: SUPPORT
219+
evidence_source: IN_VITRO
220+
snippet: each of the ASF is cultivable in complex media including brain heart infusion medium
221+
or Schaedler's medium supplemented with bovine serum
222+
explanation: Names the complex media (BHI and Schaedler's medium, serum-supplemented) used to
223+
culture the ASF members in vitro.
224+
- reference: PMID:26323627
225+
supports: SUPPORT
226+
evidence_source: IN_VITRO
227+
snippet: consisted of eight anaerobic bacteria of which only the two lactobacilli could grow
228+
aerobically
229+
explanation: Supports the anaerobic cultivation atmosphere for the ASF members.
230+
- reference: PMID:26323627
231+
supports: SUPPORT
232+
evidence_source: IN_VITRO
233+
snippet: all members of the ASF community can be cultivated in vitro (e.g., BHI plus serum or
234+
Schaedler's medium plus serum)
235+
explanation: Confirms all members are serum-supplemented complex-media cultivable with no defined
236+
medium for the EOS members.
237+
- reference: PMID:26323627
238+
supports: SUPPORT
239+
evidence_source: IN_VIVO
240+
snippet: stably passed through multiple generations (at least 15 years or more by the authors)
241+
in gnotobiotic mice continually bred in isolator facilities
242+
explanation: Supports gnotobiotic isolator husbandry of the host that maintains the community.

kb/communities/Infant_Gut_Prebiotic_Response_SynCom.yaml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,3 +184,40 @@ ecological_interactions:
184184
evidence_source: IN_VITRO
185185
snippet: with lactate exerting species-specific inhibitory effects independent of bulk pH changes
186186
explanation: Fermentation-product (lactate) driven, species-specific competitive inhibition beyond pH.
187+
growth_media:
188+
- name: eGAM (enhanced Gifu Anaerobic Medium); adjusted M9 minimal medium for metabolic labelling
189+
temperature: '37'
190+
temperature_unit: °C
191+
atmosphere: ANAEROBIC
192+
headspace_gas: 5% CO2, 5% H2, balanced with N2 (Coy anaerobic vinyl chamber)
193+
incubation_time: '48'
194+
incubation_time_unit: h
195+
vessel_type: Coy anaerobic vinyl chamber; individual 48 h strain cultures pooled into the SynCom
196+
inoculum_source: Six-member defined SynCom — Phocaeicola vulgatus, Bifidobacterium breve,
197+
B. infantis, Escherichia coli, Lactobacillus gasseri, Ruminococcus gnavus
198+
preparation_notes: Enhanced GAM (eGAM) was used for all routine culturing (adjusted M9 minimal
199+
medium for metabolic labelling and secondary-metabolite production); exact medium composition
200+
is given in the paper's supplementary Excel sheet. For SynCom assembly, baseline growth rates
201+
were measured in eGAM+glucose (1:100 dilution from a two-day culture); strains were
202+
abundance-equalised to reach OD 0.2 at 5 h, and each 48 h culture was centrifuged (3000 x g,
203+
10 min, RT) and resuspended in fresh medium before pooling.
204+
evidence:
205+
- reference: doi:10.64898/2026.05.29.728681
206+
supports: SUPPORT
207+
evidence_source: IN_VITRO
208+
snippet: All bacteria were grown under anaerobic conditions (5% CO2, 5% H2, balanced with N2)
209+
using an anaerobic vinyl chamber (Coy Laboratory Products) at 37°C.
210+
explanation: SynCom cultivation atmosphere (anaerobic gas mix), chamber, and temperature.
211+
- reference: doi:10.64898/2026.05.29.728681
212+
supports: SUPPORT
213+
evidence_source: IN_VITRO
214+
snippet: 'As medium either eGAM (enhanced GAM; for all culturing if not indicated differently)
215+
or adjusted M9 minimal medium (for metabolic labelling and secondary metabolite production)
216+
was used'
217+
explanation: Growth medium — eGAM for routine culturing, adjusted M9 minimal for labelling.
218+
- reference: doi:10.64898/2026.05.29.728681
219+
supports: SUPPORT
220+
evidence_source: IN_VITRO
221+
snippet: we constructed a six-member simplified defined microbial community (referred to as
222+
SynCom; see Methods) comprising Phocaeicola vulgatus
223+
explanation: Establishes the defined six-member SynCom cultured under these conditions.

kb/communities/Maize_Root_Simplified_Community.yaml

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -531,3 +531,57 @@ environmental_factors:
531531
metals_present: []
532532
metal_relevance: INCIDENTAL
533533
metal_notes: Metal/REE detected via environmental factor measurements
534+
growth_media:
535+
- name: 1/2 Murashige and Skoog (MS) agar gnotobiotic maize-root system (members precultured
536+
on 0.1x TSA / tryptic soy broth)
537+
temperature: '30'
538+
temperature_unit: °C
539+
ph: '6.0'
540+
light_regime: 16 h light (day) / 8 h dark (night)
541+
inoculum_source: Maize root-derived bacterial isolates obtained by host-mediated selection
542+
vessel_type: Glass test tube (16 x 150 mm) double-tube gnotobiotic chamber (root assembly);
543+
9-cm Petri dish (seed germination); pots in a plant growth chamber (soil-grown plants)
544+
preparation_notes: 'Community members were streaked on 0.1x TSA plates (30 °C, 24-48 h)
545+
and precultured in tryptic soy broth (TSB) shaken at 30 °C before inoculation. The
546+
simplified synthetic community was assembled on the roots of axenic maize seedlings
547+
grown in sterile 1/2 MS agar [0.8% (wt/vol), pH adjusted to 6.0 to simulate soil pH]
548+
within double-tube gnotobiotic chambers. Surface-sterilized seeds were germinated at
549+
30 °C in the dark for ~50-55 h. Soil-grown plants were kept in a plant growth chamber
550+
at 25 °C with 54% relative humidity under a 16 h light / 8 h dark cycle.'
551+
evidence:
552+
- reference: PMID:28275097
553+
supports: SUPPORT
554+
evidence_source: IN_VITRO
555+
snippet: The bacterial strains for inoculation were streaked on 0.1× TSA plates and incubated
556+
at 30 °C for 24–48 h. Then, a single colony of each strain was inoculated in 5 mL of
557+
tryptic soy broth (TSB) and shaken at 30 °C overnight.
558+
explanation: Bacterial member preculture medium (0.1x TSA / TSB) and incubation temperature
559+
(30 °C).
560+
- reference: PMID:28275097
561+
supports: SUPPORT
562+
evidence_source: IN_VITRO
563+
snippet: the resulting seedlings were grown in sterile 1/2 Murashige and Skoog (MS) agar
564+
[0.8% (wt/vol)] (adjusting the pH to 6.0 to simulate the pH of soil
565+
explanation: MS agar cultivation substrate and pH (6.0) for the gnotobiotic root-assembly
566+
system.
567+
- reference: PMID:28275097
568+
supports: SUPPORT
569+
evidence_source: IN_VITRO
570+
snippet: A seed inoculated with bacteria was put into a glass test tube (16 × 150 mm) containing
571+
20 mL of 1/2 MS agar
572+
explanation: Double-tube gnotobiotic chamber vessel used to grow the axenic maize seedlings
573+
on which the community assembles.
574+
- reference: PMID:28275097
575+
supports: SUPPORT
576+
evidence_source: IN_VITRO
577+
snippet: 10 seeds, embryo side up, were placed in a Perti dish (9-cm diameter) filled with
578+
7 mL of sterile water and incubated at 30 °C in the dark until the seeds germinated (usually
579+
after 50–55 h).
580+
explanation: Seed germination conditions (30 °C, dark, ~50-55 h) preceding community inoculation.
581+
- reference: PMID:28275097
582+
supports: SUPPORT
583+
evidence_source: IN_VIVO
584+
snippet: 'the pots were placed in a plant growth chamber under the following conditions:
585+
16 h of light (day) and 8 h of dark (night), 25 °C, and a relative humidity of 54%.'
586+
explanation: Plant (Zea mays) growth chamber photoperiod, temperature, and humidity for
587+
soil-grown host plants.

kb/communities/Trichoderma_Lactate_Platform.yaml

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -257,3 +257,66 @@ related_ingredients:
257257
metals_present: []
258258
metal_relevance: INCIDENTAL
259259
metal_notes: Metal/REE detected via environmental factor measurements
260+
growth_media:
261+
- name: Mandels medium
262+
temperature: '30'
263+
temperature_unit: °C
264+
ph: '6.0'
265+
inoculum_size: '5'
266+
inoculum_unit: '% v/v'
267+
vessel_type: membrane-aerated bioreactor
268+
preparation_notes: >-
269+
Reactor autoclaved with microcrystalline cellulose or pretreated beechwood; remaining
270+
medium components added at inoculation. Three-step sequential inoculation: T. reesei
271+
(5% v/v), then the lactic acid bacteria to OD600 0.5 after 48 h, then the
272+
lactate-fermenting anaerobe (5% v/v) after a further 48 h. The membrane was
273+
continuously flushed with air (140 mL/min per liter liquid phase), generating an
274+
aerobic-to-anaerobic oxygen gradient. pH controlled with 4 N phosphoric acid / 4 M
275+
sodium hydroxide.
276+
evidence:
277+
- reference: PMID:32855308
278+
supports: SUPPORT
279+
evidence_source: IN_VITRO
280+
snippet: The temperature was set to 30°C and the pH to 6.0 using 4 N phosphoric acid
281+
and 4 M sodium hydroxide.
282+
explanation: Methods specify the reactor setpoints (30°C, pH 6.0) for the lactate-platform
283+
coculture.
284+
- reference: PMID:32855308
285+
supports: SUPPORT
286+
evidence_source: IN_VITRO
287+
snippet: The remaining medium components were added when the reactor was inoculated
288+
with 5% (v/v) T. reesei. After 48 hours, the lactic acid bacteria were inoculated
289+
to an optical density (OD600) of 0.5 by centrifuging the cells at 3000 rpm for 10 min
290+
and suspending them in fresh Mandels medium.
291+
explanation: Identifies Mandels medium as the reactor medium and the sequential inoculum
292+
sizes used in the platform.
293+
cultivation_setup:
294+
- cultivation_mode: FED_BATCH
295+
system_type: MEMBRANE_BIOREACTOR
296+
instrument_detail: Stirred-tank fermenter modified with a tubular polydimethylsiloxane
297+
(PDMS) gas-transfer membrane for membrane aeration and oxygen-gradient generation.
298+
manufacturer_model: Infors HT Multifors 2 / Labfors 5 (Switzerland)
299+
working_volume: 2.7
300+
working_volume_unit: L
301+
operating_temperature: 30.0
302+
operating_temperature_unit: °C
303+
ph_controlled: true
304+
notes: >-
305+
Membrane-aerated bioreactor; 0.5 L (Multifors 2) and 2.7 L (Labfors 5) working volumes
306+
used. Membrane continuously flushed with air at 140 mL/min per liter liquid phase to
307+
create an aerobic-to-anaerobic oxygen gradient. Soluble substrates fed after LAB
308+
inoculation (fed-batch).
309+
evidence:
310+
- reference: PMID:32855308
311+
supports: SUPPORT
312+
evidence_source: IN_VITRO
313+
snippet: The membrane bioreactors were based on Multifors 2 and Labfors 5 bioreactors
314+
(Infors HT, Switzerland) with 0.5 and 2.7 liter working volume, respectively. Both
315+
reactors were modified with a tubular polydimethylsiloxane (PDMS) membrane.
316+
explanation: Defines the reactor hardware, manufacturer/models, and working volumes.
317+
- reference: PMID:32855308
318+
supports: SUPPORT
319+
evidence_source: IN_VITRO
320+
snippet: For fed-batch experiments, the feed solution was sterile filtered and fed at
321+
a constant feeding rate.
322+
explanation: Establishes fed-batch operating mode with constant-rate feeding.

kb/communities/Trichodesmium_Alteromonas_Marine_Consortium.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -277,4 +277,25 @@ metals_present:
277277
- IRON
278278
metal_relevance: SIGNIFICANT
279279
metal_notes: Iron acquisition is one inferred interaction axis in Trichodesmium-associated bacterial consortia.
280+
growth_media:
281+
- name: YBC-II
282+
temperature: '26'
283+
temperature_unit: °C
284+
light_regime: 14:10 light:dark
285+
light_intensity: '150'
286+
light_intensity_unit: μmol m-2 s-1
287+
vessel_type: 2 l polycarbonate baffled flask
288+
preparation_notes: YBC-II is an artificial seawater medium for oceanic cyanobacteria (Chen et al.,
289+
1996). Trichodesmium erythraeum IMS101 consortium enrichments grown with continuous shaking under
290+
fluorescent light to avoid cell sedimentation; associated Alteromonas macleodii epibionts were
291+
isolated from these Trichodesmium cultures on soft-agar RMP medium.
292+
evidence:
293+
- reference: PMID:28440800
294+
supports: SUPPORT
295+
evidence_source: IN_VITRO
296+
snippet: Enrichments were grown in 1 l of YBC-II media (Chen et al., 1996) in 2 l polycarbonate
297+
baffled flasks at 26 °C under a 14:10 light:dark cycle (150 μM m−2 s−1) with fluorescent
298+
light. Enrichments were continuously shaken to avoid cell sedimentation.
299+
explanation: Reports the seawater medium, temperature, light regime/intensity, vessel, and
300+
shaking used to grow the Trichodesmium consortium enrichment.
280301

kb/communities/Watermelon_Rhizosphere_Fusarium_SynCom8.yaml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,3 +81,45 @@ related_ingredients:
8181
the SM of these strains, indicating metabolic cross-feeding potential among these species
8282
explanation: Names N-acetyl-L-serine as a verified cross-feeding metabolite in the simplified
8383
SynCom centered on Pseudomonas aeruginosa Q6.
84+
growth_media:
85+
- name: beef extract peptone broth (NB) medium
86+
temperature: '37'
87+
temperature_unit: °C
88+
shaking_speed: '170'
89+
shaking_speed_unit: rpm
90+
inoculum_size: '0.1'
91+
inoculum_unit: OD600
92+
preparation_notes: SynCom members were each grown overnight in NB medium, then centrifuged and
93+
re-suspended in sterile water to OD600 0.1 and mixed in equal volume (v/v) to establish the
94+
SynCom. The SynCom was applied to ungrafted watermelon seedlings (cultivar Zaojia 8424) in
95+
polypropylene pots filled with 600 g of non-sterile soil in a greenhouse (daytime 16 h at 30 °C,
96+
night 8 h at 26 °C).
97+
evidence:
98+
- reference: PMID:38840214
99+
supports: SUPPORT
100+
evidence_source: IN_VITRO
101+
snippet: each of the 16 core strains was inoculated in beef extract peptone broth (NB) medium
102+
and incubated overnight at 37℃ at 170 rpm
103+
explanation: Names the growth medium (NB), incubation temperature (37 °C) and shaking speed (170
104+
rpm) used to culture the SynCom member strains.
105+
- reference: PMID:38840214
106+
supports: SUPPORT
107+
evidence_source: IN_VITRO
108+
snippet: The fermentation broth of each strain was centrifuged at 4000 × g for 5 min and re-suspended
109+
in sterile water with OD600 adjusted to 0.1. The suspensions of the 16 strains were mixed in
110+
equal volume (v/v) to establish the SynCom.
111+
explanation: Gives the inoculum preparation and density (OD600 0.1) used to assemble and apply
112+
the SynCom.
113+
- reference: PMID:38840214
114+
supports: SUPPORT
115+
evidence_source: IN_VIVO
116+
snippet: 'The pot experiments were run in a greenhouse (daytime: 16 h long at 30°C, night: 8 h
117+
long at 26°C) located in Nanjing Agriculture University.'
118+
explanation: Gives the greenhouse day/night temperature and photoperiod regime under which the
119+
inoculated watermelon plants (and rhizosphere SynCom) were grown.
120+
- reference: PMID:38840214
121+
supports: SUPPORT
122+
evidence_source: IN_VIVO
123+
snippet: Each replicate was run in polypropylene pots filled with 600 g of dry, non-sterile soil
124+
with no history of watermelon cultivation.
125+
explanation: Describes the pot/soil cultivation vessel for the SynCom-inoculated watermelon plants.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
--- author-request draft ---
2+
To: <corresponding author of: P. L. Wichlacz, R. F. Unz, T. A. Langworthy>
3+
Subject: Request for Methods details — Acidiphilium angustum sp. nov., Acidiphilium facilis sp. nov., and Aci
4+
5+
Dear Author,
6+
7+
I am curating an open, public microbial-community knowledge base and would like to cite your paper "Acidiphilium angustum sp. nov., Acidiphilium facilis sp. nov., and Acidiphilium rubrum sp. nov.: Acidophilic Heterotrophic Bacteria Isolated from Acidic Coal Mine Drainage" (doi:10.1099/00207713-36-2-197). The abstract does not include the cultivation / Methods details I need (medium composition, temperature, pH, atmosphere, and the member strain identities). Could you share the relevant Methods/supplementary text, or a PDF? The extracted, source-attributed data would be published openly with full citation to your work.
8+
9+
Thank you,
10+
CommunityMech curation team
11+

0 commit comments

Comments
 (0)