@saibolla/ada 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.ada/SYSTEM.md +81 -0
- package/.ada/agents/researcher.md +69 -0
- package/.ada/agents/reviewer.md +92 -0
- package/.ada/agents/verifier.md +45 -0
- package/.ada/agents/writer.md +54 -0
- package/.ada/settings.json +32 -0
- package/.ada/themes/ada.json +85 -0
- package/.env.example +31 -0
- package/AGENTS.md +79 -0
- package/LICENSE +191 -0
- package/README.md +188 -0
- package/bin/ada.js +26 -0
- package/dist/bootstrap/sync.js +143 -0
- package/dist/cli.js +404 -0
- package/dist/config/paths.js +32 -0
- package/dist/index.js +10 -0
- package/dist/model/catalog.js +255 -0
- package/dist/model/commands.js +180 -0
- package/dist/pi/launch.js +33 -0
- package/dist/pi/package-presets.js +55 -0
- package/dist/pi/runtime.js +81 -0
- package/dist/pi/settings.js +108 -0
- package/dist/pi/web-access.js +74 -0
- package/dist/search/commands.js +12 -0
- package/dist/setup/doctor.js +126 -0
- package/dist/setup/preview.js +117 -0
- package/dist/setup/prompts.js +34 -0
- package/dist/setup/setup.js +98 -0
- package/dist/setup/update.js +133 -0
- package/dist/system/executables.js +38 -0
- package/dist/system/node-version.js +31 -0
- package/dist/system/open-url.js +35 -0
- package/dist/system/promise-polyfill.js +12 -0
- package/dist/ui/terminal.js +64 -0
- package/dist/web/launch.js +48 -0
- package/dist/web-search.js +1 -0
- package/extensions/docparser/constants.ts +62 -0
- package/extensions/docparser/deps.ts +584 -0
- package/extensions/docparser/doctor.ts +353 -0
- package/extensions/docparser/index.ts +9 -0
- package/extensions/docparser/input.ts +230 -0
- package/extensions/docparser/request.ts +67 -0
- package/extensions/docparser/schema.ts +82 -0
- package/extensions/docparser/tool.ts +305 -0
- package/extensions/docparser/types.ts +99 -0
- package/extensions/research-tools/alpha.ts +107 -0
- package/extensions/research-tools/header.ts +284 -0
- package/extensions/research-tools/help.ts +93 -0
- package/extensions/research-tools/project-scaffold.ts +64 -0
- package/extensions/research-tools/project.ts +123 -0
- package/extensions/research-tools/shared.ts +16 -0
- package/extensions/research-tools.ts +42 -0
- package/logo.d.mts +3 -0
- package/logo.mjs +14 -0
- package/metadata/commands.d.mts +46 -0
- package/metadata/commands.mjs +133 -0
- package/package.json +80 -0
- package/prompts/audit.md +17 -0
- package/prompts/autoresearch.md +66 -0
- package/prompts/compare.md +18 -0
- package/prompts/deepresearch.md +189 -0
- package/prompts/draft.md +19 -0
- package/prompts/jobs.md +16 -0
- package/prompts/litreview.md +18 -0
- package/prompts/log.md +14 -0
- package/prompts/replicate.md +24 -0
- package/prompts/review.md +18 -0
- package/prompts/watch.md +16 -0
- package/scripts/build-native-bundle.mjs +349 -0
- package/scripts/check-node-version.mjs +35 -0
- package/scripts/patch-embedded-pi.mjs +588 -0
- package/scripts/prepare-runtime-workspace.mjs +162 -0
- package/scripts/prune-runtime-deps.mjs +131 -0
- package/scripts/release.sh +152 -0
- package/skills/adaptyv/SKILL.md +112 -0
- package/skills/adaptyv/reference/api_reference.md +308 -0
- package/skills/adaptyv/reference/examples.md +913 -0
- package/skills/adaptyv/reference/experiments.md +360 -0
- package/skills/adaptyv/reference/protein_optimization.md +637 -0
- package/skills/aeon/SKILL.md +372 -0
- package/skills/aeon/references/anomaly_detection.md +154 -0
- package/skills/aeon/references/classification.md +144 -0
- package/skills/aeon/references/clustering.md +123 -0
- package/skills/aeon/references/datasets_benchmarking.md +387 -0
- package/skills/aeon/references/distances.md +256 -0
- package/skills/aeon/references/forecasting.md +140 -0
- package/skills/aeon/references/networks.md +289 -0
- package/skills/aeon/references/regression.md +118 -0
- package/skills/aeon/references/segmentation.md +163 -0
- package/skills/aeon/references/similarity_search.md +187 -0
- package/skills/aeon/references/transformations.md +246 -0
- package/skills/alpha-research/SKILL.md +42 -0
- package/skills/alpha-vantage/SKILL.md +142 -0
- package/skills/alpha-vantage/references/commodities.md +153 -0
- package/skills/alpha-vantage/references/economic-indicators.md +158 -0
- package/skills/alpha-vantage/references/forex-crypto.md +154 -0
- package/skills/alpha-vantage/references/fundamentals.md +223 -0
- package/skills/alpha-vantage/references/intelligence.md +138 -0
- package/skills/alpha-vantage/references/options.md +93 -0
- package/skills/alpha-vantage/references/technical-indicators.md +374 -0
- package/skills/alpha-vantage/references/time-series.md +157 -0
- package/skills/alphafold-database/SKILL.md +511 -0
- package/skills/alphafold-database/references/api_reference.md +423 -0
- package/skills/anndata/SKILL.md +398 -0
- package/skills/anndata/references/best_practices.md +525 -0
- package/skills/anndata/references/concatenation.md +396 -0
- package/skills/anndata/references/data_structure.md +314 -0
- package/skills/anndata/references/io_operations.md +404 -0
- package/skills/anndata/references/manipulation.md +516 -0
- package/skills/arboreto/SKILL.md +241 -0
- package/skills/arboreto/references/algorithms.md +138 -0
- package/skills/arboreto/references/basic_inference.md +151 -0
- package/skills/arboreto/references/distributed_computing.md +242 -0
- package/skills/arboreto/scripts/basic_grn_inference.py +97 -0
- package/skills/arxiv-database/SKILL.md +362 -0
- package/skills/arxiv-database/references/api_reference.md +430 -0
- package/skills/arxiv-database/scripts/arxiv_search.py +414 -0
- package/skills/astropy/SKILL.md +329 -0
- package/skills/astropy/references/coordinates.md +273 -0
- package/skills/astropy/references/cosmology.md +307 -0
- package/skills/astropy/references/fits.md +396 -0
- package/skills/astropy/references/tables.md +489 -0
- package/skills/astropy/references/time.md +404 -0
- package/skills/astropy/references/units.md +178 -0
- package/skills/astropy/references/wcs_and_other_modules.md +373 -0
- package/skills/autoresearch/SKILL.md +12 -0
- package/skills/benchling-integration/SKILL.md +478 -0
- package/skills/benchling-integration/references/api_endpoints.md +883 -0
- package/skills/benchling-integration/references/authentication.md +379 -0
- package/skills/benchling-integration/references/sdk_reference.md +774 -0
- package/skills/bgpt-paper-search/SKILL.md +81 -0
- package/skills/bindingdb-database/SKILL.md +332 -0
- package/skills/bindingdb-database/references/affinity_queries.md +178 -0
- package/skills/biopython/SKILL.md +441 -0
- package/skills/biopython/references/advanced.md +577 -0
- package/skills/biopython/references/alignment.md +362 -0
- package/skills/biopython/references/blast.md +455 -0
- package/skills/biopython/references/databases.md +484 -0
- package/skills/biopython/references/phylogenetics.md +566 -0
- package/skills/biopython/references/sequence_io.md +285 -0
- package/skills/biopython/references/structure.md +564 -0
- package/skills/biorxiv-database/SKILL.md +481 -0
- package/skills/biorxiv-database/references/api_reference.md +280 -0
- package/skills/biorxiv-database/scripts/biorxiv_search.py +445 -0
- package/skills/bioservices/SKILL.md +359 -0
- package/skills/bioservices/references/identifier_mapping.md +685 -0
- package/skills/bioservices/references/services_reference.md +636 -0
- package/skills/bioservices/references/workflow_patterns.md +811 -0
- package/skills/bioservices/scripts/batch_id_converter.py +347 -0
- package/skills/bioservices/scripts/compound_cross_reference.py +378 -0
- package/skills/bioservices/scripts/pathway_analysis.py +309 -0
- package/skills/bioservices/scripts/protein_analysis_workflow.py +408 -0
- package/skills/brenda-database/SKILL.md +717 -0
- package/skills/brenda-database/references/api_reference.md +537 -0
- package/skills/brenda-database/scripts/brenda_queries.py +844 -0
- package/skills/brenda-database/scripts/brenda_visualization.py +772 -0
- package/skills/brenda-database/scripts/enzyme_pathway_builder.py +1053 -0
- package/skills/cbioportal-database/SKILL.md +367 -0
- package/skills/cbioportal-database/references/study_exploration.md +128 -0
- package/skills/cellxgene-census/SKILL.md +509 -0
- package/skills/cellxgene-census/references/census_schema.md +182 -0
- package/skills/cellxgene-census/references/common_patterns.md +351 -0
- package/skills/chembl-database/SKILL.md +387 -0
- package/skills/chembl-database/references/api_reference.md +272 -0
- package/skills/chembl-database/scripts/example_queries.py +278 -0
- package/skills/cirq/SKILL.md +344 -0
- package/skills/cirq/references/building.md +307 -0
- package/skills/cirq/references/experiments.md +572 -0
- package/skills/cirq/references/hardware.md +515 -0
- package/skills/cirq/references/noise.md +515 -0
- package/skills/cirq/references/simulation.md +350 -0
- package/skills/cirq/references/transformation.md +416 -0
- package/skills/citation-management/SKILL.md +1113 -0
- package/skills/citation-management/assets/bibtex_template.bib +264 -0
- package/skills/citation-management/assets/citation_checklist.md +386 -0
- package/skills/citation-management/references/bibtex_formatting.md +908 -0
- package/skills/citation-management/references/citation_validation.md +794 -0
- package/skills/citation-management/references/google_scholar_search.md +725 -0
- package/skills/citation-management/references/metadata_extraction.md +870 -0
- package/skills/citation-management/references/pubmed_search.md +839 -0
- package/skills/citation-management/scripts/doi_to_bibtex.py +204 -0
- package/skills/citation-management/scripts/extract_metadata.py +569 -0
- package/skills/citation-management/scripts/format_bibtex.py +349 -0
- package/skills/citation-management/scripts/search_google_scholar.py +282 -0
- package/skills/citation-management/scripts/search_pubmed.py +398 -0
- package/skills/citation-management/scripts/validate_citations.py +497 -0
- package/skills/clinical-decision-support/SKILL.md +510 -0
- package/skills/clinical-decision-support/assets/biomarker_report_template.tex +380 -0
- package/skills/clinical-decision-support/assets/clinical_pathway_template.tex +222 -0
- package/skills/clinical-decision-support/assets/cohort_analysis_template.tex +359 -0
- package/skills/clinical-decision-support/assets/color_schemes.tex +149 -0
- package/skills/clinical-decision-support/assets/example_gbm_cohort.md +208 -0
- package/skills/clinical-decision-support/assets/recommendation_strength_guide.md +328 -0
- package/skills/clinical-decision-support/assets/treatment_recommendation_template.tex +529 -0
- package/skills/clinical-decision-support/references/README.md +129 -0
- package/skills/clinical-decision-support/references/biomarker_classification.md +719 -0
- package/skills/clinical-decision-support/references/clinical_decision_algorithms.md +604 -0
- package/skills/clinical-decision-support/references/evidence_synthesis.md +840 -0
- package/skills/clinical-decision-support/references/outcome_analysis.md +640 -0
- package/skills/clinical-decision-support/references/patient_cohort_analysis.md +427 -0
- package/skills/clinical-decision-support/references/treatment_recommendations.md +521 -0
- package/skills/clinical-decision-support/scripts/biomarker_classifier.py +384 -0
- package/skills/clinical-decision-support/scripts/build_decision_tree.py +447 -0
- package/skills/clinical-decision-support/scripts/create_cohort_tables.py +524 -0
- package/skills/clinical-decision-support/scripts/generate_survival_analysis.py +422 -0
- package/skills/clinical-decision-support/scripts/validate_cds_document.py +335 -0
- package/skills/clinical-reports/SKILL.md +1131 -0
- package/skills/clinical-reports/assets/case_report_template.md +352 -0
- package/skills/clinical-reports/assets/clinical_trial_csr_template.md +353 -0
- package/skills/clinical-reports/assets/clinical_trial_sae_template.md +359 -0
- package/skills/clinical-reports/assets/consult_note_template.md +305 -0
- package/skills/clinical-reports/assets/discharge_summary_template.md +453 -0
- package/skills/clinical-reports/assets/hipaa_compliance_checklist.md +395 -0
- package/skills/clinical-reports/assets/history_physical_template.md +305 -0
- package/skills/clinical-reports/assets/lab_report_template.md +309 -0
- package/skills/clinical-reports/assets/pathology_report_template.md +249 -0
- package/skills/clinical-reports/assets/quality_checklist.md +338 -0
- package/skills/clinical-reports/assets/radiology_report_template.md +318 -0
- package/skills/clinical-reports/assets/soap_note_template.md +253 -0
- package/skills/clinical-reports/references/README.md +236 -0
- package/skills/clinical-reports/references/case_report_guidelines.md +570 -0
- package/skills/clinical-reports/references/clinical_trial_reporting.md +693 -0
- package/skills/clinical-reports/references/data_presentation.md +530 -0
- package/skills/clinical-reports/references/diagnostic_reports_standards.md +629 -0
- package/skills/clinical-reports/references/medical_terminology.md +588 -0
- package/skills/clinical-reports/references/patient_documentation.md +744 -0
- package/skills/clinical-reports/references/peer_review_standards.md +585 -0
- package/skills/clinical-reports/references/regulatory_compliance.md +577 -0
- package/skills/clinical-reports/scripts/check_deidentification.py +346 -0
- package/skills/clinical-reports/scripts/compliance_checker.py +78 -0
- package/skills/clinical-reports/scripts/extract_clinical_data.py +102 -0
- package/skills/clinical-reports/scripts/format_adverse_events.py +103 -0
- package/skills/clinical-reports/scripts/generate_report_template.py +163 -0
- package/skills/clinical-reports/scripts/terminology_validator.py +133 -0
- package/skills/clinical-reports/scripts/validate_case_report.py +334 -0
- package/skills/clinical-reports/scripts/validate_trial_report.py +89 -0
- package/skills/clinicaltrials-database/SKILL.md +505 -0
- package/skills/clinicaltrials-database/references/api_reference.md +358 -0
- package/skills/clinicaltrials-database/scripts/query_clinicaltrials.py +215 -0
- package/skills/clinpgx-database/SKILL.md +636 -0
- package/skills/clinpgx-database/references/api_reference.md +757 -0
- package/skills/clinpgx-database/scripts/query_clinpgx.py +518 -0
- package/skills/clinvar-database/SKILL.md +360 -0
- package/skills/clinvar-database/references/api_reference.md +227 -0
- package/skills/clinvar-database/references/clinical_significance.md +218 -0
- package/skills/clinvar-database/references/data_formats.md +358 -0
- package/skills/cobrapy/SKILL.md +461 -0
- package/skills/cobrapy/references/api_quick_reference.md +655 -0
- package/skills/cobrapy/references/workflows.md +593 -0
- package/skills/consciousness-council/SKILL.md +150 -0
- package/skills/consciousness-council/references/advanced-configurations.md +96 -0
- package/skills/cosmic-database/SKILL.md +334 -0
- package/skills/cosmic-database/references/cosmic_data_reference.md +220 -0
- package/skills/cosmic-database/scripts/download_cosmic.py +231 -0
- package/skills/crawl4ai/SKILL.md +172 -0
- package/skills/dask/SKILL.md +454 -0
- package/skills/dask/references/arrays.md +497 -0
- package/skills/dask/references/bags.md +468 -0
- package/skills/dask/references/best-practices.md +277 -0
- package/skills/dask/references/dataframes.md +368 -0
- package/skills/dask/references/futures.md +541 -0
- package/skills/dask/references/schedulers.md +504 -0
- package/skills/datacommons-client/SKILL.md +253 -0
- package/skills/datacommons-client/references/getting_started.md +417 -0
- package/skills/datacommons-client/references/node.md +250 -0
- package/skills/datacommons-client/references/observation.md +185 -0
- package/skills/datacommons-client/references/resolve.md +246 -0
- package/skills/datamol/SKILL.md +704 -0
- package/skills/datamol/references/conformers_module.md +131 -0
- package/skills/datamol/references/core_api.md +130 -0
- package/skills/datamol/references/descriptors_viz.md +195 -0
- package/skills/datamol/references/fragments_scaffolds.md +174 -0
- package/skills/datamol/references/io_module.md +109 -0
- package/skills/datamol/references/reactions_data.md +218 -0
- package/skills/deep-research/SKILL.md +12 -0
- package/skills/deepchem/SKILL.md +595 -0
- package/skills/deepchem/references/api_reference.md +303 -0
- package/skills/deepchem/references/workflows.md +491 -0
- package/skills/deepchem/scripts/graph_neural_network.py +338 -0
- package/skills/deepchem/scripts/predict_solubility.py +224 -0
- package/skills/deepchem/scripts/transfer_learning.py +375 -0
- package/skills/deeptools/SKILL.md +529 -0
- package/skills/deeptools/assets/quick_reference.md +58 -0
- package/skills/deeptools/references/effective_genome_sizes.md +116 -0
- package/skills/deeptools/references/normalization_methods.md +410 -0
- package/skills/deeptools/references/tools_reference.md +533 -0
- package/skills/deeptools/references/workflows.md +474 -0
- package/skills/deeptools/scripts/validate_files.py +195 -0
- package/skills/deeptools/scripts/workflow_generator.py +454 -0
- package/skills/denario/SKILL.md +213 -0
- package/skills/denario/references/examples.md +494 -0
- package/skills/denario/references/installation.md +213 -0
- package/skills/denario/references/llm_configuration.md +265 -0
- package/skills/denario/references/research_pipeline.md +471 -0
- package/skills/depmap/SKILL.md +300 -0
- package/skills/depmap/references/dependency_analysis.md +178 -0
- package/skills/dhdna-profiler/SKILL.md +162 -0
- package/skills/dhdna-profiler/references/advanced-profiling.md +72 -0
- package/skills/diffdock/SKILL.md +481 -0
- package/skills/diffdock/assets/batch_template.csv +4 -0
- package/skills/diffdock/assets/custom_inference_config.yaml +90 -0
- package/skills/diffdock/references/confidence_and_limitations.md +182 -0
- package/skills/diffdock/references/parameters_reference.md +163 -0
- package/skills/diffdock/references/workflows_examples.md +392 -0
- package/skills/diffdock/scripts/analyze_results.py +334 -0
- package/skills/diffdock/scripts/prepare_batch_csv.py +254 -0
- package/skills/diffdock/scripts/setup_check.py +278 -0
- package/skills/dnanexus-integration/SKILL.md +381 -0
- package/skills/dnanexus-integration/references/app-development.md +247 -0
- package/skills/dnanexus-integration/references/configuration.md +646 -0
- package/skills/dnanexus-integration/references/data-operations.md +400 -0
- package/skills/dnanexus-integration/references/job-execution.md +412 -0
- package/skills/dnanexus-integration/references/python-sdk.md +523 -0
- package/skills/docker/SKILL.md +84 -0
- package/skills/docx/LICENSE.txt +30 -0
- package/skills/docx/SKILL.md +590 -0
- package/skills/docx/scripts/__init__.py +1 -0
- package/skills/docx/scripts/accept_changes.py +135 -0
- package/skills/docx/scripts/comment.py +318 -0
- package/skills/docx/scripts/office/helpers/__init__.py +0 -0
- package/skills/docx/scripts/office/helpers/merge_runs.py +199 -0
- package/skills/docx/scripts/office/helpers/simplify_redlines.py +197 -0
- package/skills/docx/scripts/office/pack.py +159 -0
- package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
- package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
- package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
- package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
- package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
- package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
- package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
- package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
- package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
- package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
- package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
- package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
- package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
- package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
- package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
- package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
- package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
- package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
- package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
- package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
- package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
- package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
- package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
- package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
- package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
- package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
- package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
- package/skills/docx/scripts/office/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
- package/skills/docx/scripts/office/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
- package/skills/docx/scripts/office/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
- package/skills/docx/scripts/office/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
- package/skills/docx/scripts/office/schemas/mce/mc.xsd +75 -0
- package/skills/docx/scripts/office/schemas/microsoft/wml-2010.xsd +560 -0
- package/skills/docx/scripts/office/schemas/microsoft/wml-2012.xsd +67 -0
- package/skills/docx/scripts/office/schemas/microsoft/wml-2018.xsd +14 -0
- package/skills/docx/scripts/office/schemas/microsoft/wml-cex-2018.xsd +20 -0
- package/skills/docx/scripts/office/schemas/microsoft/wml-cid-2016.xsd +13 -0
- package/skills/docx/scripts/office/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
- package/skills/docx/scripts/office/schemas/microsoft/wml-symex-2015.xsd +8 -0
- package/skills/docx/scripts/office/soffice.py +183 -0
- package/skills/docx/scripts/office/unpack.py +132 -0
- package/skills/docx/scripts/office/validate.py +111 -0
- package/skills/docx/scripts/office/validators/__init__.py +15 -0
- package/skills/docx/scripts/office/validators/base.py +847 -0
- package/skills/docx/scripts/office/validators/docx.py +446 -0
- package/skills/docx/scripts/office/validators/pptx.py +275 -0
- package/skills/docx/scripts/office/validators/redlining.py +247 -0
- package/skills/docx/scripts/templates/comments.xml +3 -0
- package/skills/docx/scripts/templates/commentsExtended.xml +3 -0
- package/skills/docx/scripts/templates/commentsExtensible.xml +3 -0
- package/skills/docx/scripts/templates/commentsIds.xml +3 -0
- package/skills/docx/scripts/templates/people.xml +3 -0
- package/skills/drugbank-database/SKILL.md +188 -0
- package/skills/drugbank-database/references/chemical-analysis.md +590 -0
- package/skills/drugbank-database/references/data-access.md +242 -0
- package/skills/drugbank-database/references/drug-queries.md +386 -0
- package/skills/drugbank-database/references/interactions.md +425 -0
- package/skills/drugbank-database/references/targets-pathways.md +518 -0
- package/skills/drugbank-database/scripts/drugbank_helper.py +350 -0
- package/skills/edgartools/SKILL.md +136 -0
- package/skills/edgartools/references/ai-integration.md +274 -0
- package/skills/edgartools/references/companies.md +268 -0
- package/skills/edgartools/references/data-objects.md +237 -0
- package/skills/edgartools/references/entity-facts.md +372 -0
- package/skills/edgartools/references/filings.md +387 -0
- package/skills/edgartools/references/financial-data.md +274 -0
- package/skills/edgartools/references/xbrl.md +373 -0
- package/skills/eli5/SKILL.md +25 -0
- package/skills/ena-database/SKILL.md +202 -0
- package/skills/ena-database/references/api_reference.md +490 -0
- package/skills/ensembl-database/SKILL.md +309 -0
- package/skills/ensembl-database/references/api_endpoints.md +346 -0
- package/skills/ensembl-database/scripts/ensembl_query.py +427 -0
- package/skills/esm/SKILL.md +304 -0
- package/skills/esm/references/esm-c-api.md +583 -0
- package/skills/esm/references/esm3-api.md +452 -0
- package/skills/esm/references/forge-api.md +657 -0
- package/skills/esm/references/workflows.md +685 -0
- package/skills/etetoolkit/SKILL.md +621 -0
- package/skills/etetoolkit/references/api_reference.md +583 -0
- package/skills/etetoolkit/references/visualization.md +783 -0
- package/skills/etetoolkit/references/workflows.md +774 -0
- package/skills/etetoolkit/scripts/quick_visualize.py +214 -0
- package/skills/etetoolkit/scripts/tree_operations.py +229 -0
- package/skills/exploratory-data-analysis/SKILL.md +444 -0
- package/skills/exploratory-data-analysis/assets/report_template.md +196 -0
- package/skills/exploratory-data-analysis/references/bioinformatics_genomics_formats.md +664 -0
- package/skills/exploratory-data-analysis/references/chemistry_molecular_formats.md +664 -0
- package/skills/exploratory-data-analysis/references/general_scientific_formats.md +518 -0
- package/skills/exploratory-data-analysis/references/microscopy_imaging_formats.md +620 -0
- package/skills/exploratory-data-analysis/references/proteomics_metabolomics_formats.md +517 -0
- package/skills/exploratory-data-analysis/references/spectroscopy_analytical_formats.md +633 -0
- package/skills/exploratory-data-analysis/scripts/eda_analyzer.py +547 -0
- package/skills/fda-database/SKILL.md +516 -0
- package/skills/fda-database/references/animal_veterinary.md +377 -0
- package/skills/fda-database/references/api_basics.md +687 -0
- package/skills/fda-database/references/devices.md +632 -0
- package/skills/fda-database/references/drugs.md +468 -0
- package/skills/fda-database/references/foods.md +374 -0
- package/skills/fda-database/references/other.md +472 -0
- package/skills/fda-database/scripts/fda_examples.py +335 -0
- package/skills/fda-database/scripts/fda_query.py +440 -0
- package/skills/flowio/SKILL.md +606 -0
- package/skills/flowio/references/api_reference.md +372 -0
- package/skills/fluidsim/SKILL.md +347 -0
- package/skills/fluidsim/references/advanced_features.md +398 -0
- package/skills/fluidsim/references/installation.md +68 -0
- package/skills/fluidsim/references/output_analysis.md +283 -0
- package/skills/fluidsim/references/parameters.md +198 -0
- package/skills/fluidsim/references/simulation_workflow.md +172 -0
- package/skills/fluidsim/references/solvers.md +94 -0
- package/skills/fred-economic-data/SKILL.md +433 -0
- package/skills/fred-economic-data/references/api_basics.md +212 -0
- package/skills/fred-economic-data/references/categories.md +442 -0
- package/skills/fred-economic-data/references/geofred.md +588 -0
- package/skills/fred-economic-data/references/releases.md +642 -0
- package/skills/fred-economic-data/references/series.md +584 -0
- package/skills/fred-economic-data/references/sources.md +423 -0
- package/skills/fred-economic-data/references/tags.md +485 -0
- package/skills/fred-economic-data/scripts/fred_examples.py +354 -0
- package/skills/fred-economic-data/scripts/fred_query.py +590 -0
- package/skills/gene-database/SKILL.md +177 -0
- package/skills/gene-database/references/api_reference.md +404 -0
- package/skills/gene-database/references/common_workflows.md +428 -0
- package/skills/gene-database/scripts/batch_gene_lookup.py +298 -0
- package/skills/gene-database/scripts/fetch_gene_data.py +277 -0
- package/skills/gene-database/scripts/query_gene.py +251 -0
- package/skills/generate-image/SKILL.md +183 -0
- package/skills/generate-image/scripts/generate_image.py +281 -0
- package/skills/geniml/SKILL.md +316 -0
- package/skills/geniml/references/bedspace.md +127 -0
- package/skills/geniml/references/consensus_peaks.md +238 -0
- package/skills/geniml/references/region2vec.md +90 -0
- package/skills/geniml/references/scembed.md +197 -0
- package/skills/geniml/references/utilities.md +385 -0
- package/skills/geo-database/SKILL.md +813 -0
- package/skills/geo-database/references/geo_reference.md +829 -0
- package/skills/geomaster/README.md +105 -0
- package/skills/geomaster/SKILL.md +365 -0
- package/skills/geomaster/references/advanced-gis.md +376 -0
- package/skills/geomaster/references/big-data.md +363 -0
- package/skills/geomaster/references/code-examples.md +531 -0
- package/skills/geomaster/references/coordinate-systems.md +364 -0
- package/skills/geomaster/references/core-libraries.md +273 -0
- package/skills/geomaster/references/data-sources.md +330 -0
- package/skills/geomaster/references/gis-software.md +369 -0
- package/skills/geomaster/references/industry-applications.md +420 -0
- package/skills/geomaster/references/machine-learning.md +462 -0
- package/skills/geomaster/references/programming-languages.md +456 -0
- package/skills/geomaster/references/remote-sensing.md +370 -0
- package/skills/geomaster/references/scientific-domains.md +416 -0
- package/skills/geomaster/references/specialized-topics.md +428 -0
- package/skills/geomaster/references/troubleshooting.md +439 -0
- package/skills/geopandas/SKILL.md +249 -0
- package/skills/geopandas/references/crs-management.md +243 -0
- package/skills/geopandas/references/data-io.md +165 -0
- package/skills/geopandas/references/data-structures.md +70 -0
- package/skills/geopandas/references/geometric-operations.md +221 -0
- package/skills/geopandas/references/spatial-analysis.md +184 -0
- package/skills/geopandas/references/visualization.md +243 -0
- package/skills/get-available-resources/SKILL.md +275 -0
- package/skills/get-available-resources/scripts/detect_resources.py +401 -0
- package/skills/gget/SKILL.md +869 -0
- package/skills/gget/references/database_info.md +300 -0
- package/skills/gget/references/module_reference.md +467 -0
- package/skills/gget/references/workflows.md +814 -0
- package/skills/gget/scripts/batch_sequence_analysis.py +191 -0
- package/skills/gget/scripts/enrichment_pipeline.py +235 -0
- package/skills/gget/scripts/gene_analysis.py +161 -0
- package/skills/ginkgo-cloud-lab/SKILL.md +56 -0
- package/skills/ginkgo-cloud-lab/references/cell-free-protein-expression-optimization.md +85 -0
- package/skills/ginkgo-cloud-lab/references/cell-free-protein-expression-validation.md +71 -0
- package/skills/ginkgo-cloud-lab/references/fluorescent-pixel-art-generation.md +87 -0
- package/skills/glycoengineering/SKILL.md +338 -0
- package/skills/glycoengineering/references/glycan_databases.md +165 -0
- package/skills/gnomad-database/SKILL.md +395 -0
- package/skills/gnomad-database/references/graphql_queries.md +219 -0
- package/skills/gnomad-database/references/variant_interpretation.md +85 -0
- package/skills/gtars/SKILL.md +283 -0
- package/skills/gtars/references/cli.md +222 -0
- package/skills/gtars/references/coverage.md +172 -0
- package/skills/gtars/references/overlap.md +156 -0
- package/skills/gtars/references/python-api.md +211 -0
- package/skills/gtars/references/refget.md +147 -0
- package/skills/gtars/references/tokenizers.md +103 -0
- package/skills/gtex-database/SKILL.md +315 -0
- package/skills/gtex-database/references/api_reference.md +191 -0
- package/skills/gwas-database/SKILL.md +606 -0
- package/skills/gwas-database/references/api_reference.md +793 -0
- package/skills/hedgefundmonitor/SKILL.md +128 -0
- package/skills/hedgefundmonitor/references/api-overview.md +93 -0
- package/skills/hedgefundmonitor/references/datasets.md +150 -0
- package/skills/hedgefundmonitor/references/endpoints-combined.md +196 -0
- package/skills/hedgefundmonitor/references/endpoints-metadata.md +136 -0
- package/skills/hedgefundmonitor/references/endpoints-series-data.md +126 -0
- package/skills/hedgefundmonitor/references/examples.md +287 -0
- package/skills/hedgefundmonitor/references/parameters.md +104 -0
- package/skills/histolab/SKILL.md +676 -0
- package/skills/histolab/references/filters_preprocessing.md +514 -0
- package/skills/histolab/references/slide_management.md +172 -0
- package/skills/histolab/references/tile_extraction.md +421 -0
- package/skills/histolab/references/tissue_masks.md +251 -0
- package/skills/histolab/references/visualization.md +547 -0
- package/skills/hmdb-database/SKILL.md +194 -0
- package/skills/hmdb-database/references/hmdb_data_fields.md +267 -0
- package/skills/hypogenic/SKILL.md +653 -0
- package/skills/hypogenic/references/config_template.yaml +150 -0
- package/skills/hypothesis-generation/SKILL.md +297 -0
- package/skills/hypothesis-generation/assets/FORMATTING_GUIDE.md +672 -0
- package/skills/hypothesis-generation/assets/hypothesis_generation.sty +307 -0
- package/skills/hypothesis-generation/assets/hypothesis_report_template.tex +572 -0
- package/skills/hypothesis-generation/references/experimental_design_patterns.md +329 -0
- package/skills/hypothesis-generation/references/hypothesis_quality_criteria.md +198 -0
- package/skills/hypothesis-generation/references/literature_search_strategies.md +622 -0
- package/skills/imaging-data-commons/SKILL.md +843 -0
- package/skills/imaging-data-commons/references/bigquery_guide.md +556 -0
- package/skills/imaging-data-commons/references/cli_guide.md +272 -0
- package/skills/imaging-data-commons/references/clinical_data_guide.md +324 -0
- package/skills/imaging-data-commons/references/cloud_storage_guide.md +333 -0
- package/skills/imaging-data-commons/references/dicomweb_guide.md +399 -0
- package/skills/imaging-data-commons/references/digital_pathology_guide.md +403 -0
- package/skills/imaging-data-commons/references/index_tables_guide.md +146 -0
- package/skills/imaging-data-commons/references/sql_patterns.md +207 -0
- package/skills/imaging-data-commons/references/use_cases.md +186 -0
- package/skills/infographics/SKILL.md +563 -0
- package/skills/infographics/references/color_palettes.md +496 -0
- package/skills/infographics/references/design_principles.md +636 -0
- package/skills/infographics/references/infographic_types.md +907 -0
- package/skills/infographics/scripts/generate_infographic.py +234 -0
- package/skills/infographics/scripts/generate_infographic_ai.py +1290 -0
- package/skills/interpro-database/SKILL.md +305 -0
- package/skills/interpro-database/references/domain_analysis.md +159 -0
- package/skills/iso-13485-certification/SKILL.md +678 -0
- package/skills/iso-13485-certification/assets/templates/procedures/CAPA-procedure-template.md +453 -0
- package/skills/iso-13485-certification/assets/templates/procedures/document-control-procedure-template.md +567 -0
- package/skills/iso-13485-certification/assets/templates/quality-manual-template.md +521 -0
- package/skills/iso-13485-certification/references/gap-analysis-checklist.md +568 -0
- package/skills/iso-13485-certification/references/iso-13485-requirements.md +610 -0
- package/skills/iso-13485-certification/references/mandatory-documents.md +606 -0
- package/skills/iso-13485-certification/references/quality-manual-guide.md +688 -0
- package/skills/iso-13485-certification/scripts/gap_analyzer.py +440 -0
- package/skills/jaspar-database/SKILL.md +351 -0
- package/skills/jaspar-database/references/api_reference.md +182 -0
- package/skills/jobs/SKILL.md +10 -0
- package/skills/kegg-database/SKILL.md +375 -0
- package/skills/kegg-database/references/kegg_reference.md +326 -0
- package/skills/kegg-database/scripts/kegg_api.py +251 -0
- package/skills/labarchive-integration/SKILL.md +266 -0
- package/skills/labarchive-integration/references/api_reference.md +342 -0
- package/skills/labarchive-integration/references/authentication_guide.md +357 -0
- package/skills/labarchive-integration/references/integrations.md +425 -0
- package/skills/labarchive-integration/scripts/entry_operations.py +334 -0
- package/skills/labarchive-integration/scripts/notebook_operations.py +269 -0
- package/skills/labarchive-integration/scripts/setup_config.py +205 -0
- package/skills/lamindb/SKILL.md +388 -0
- package/skills/lamindb/references/annotation-validation.md +513 -0
- package/skills/lamindb/references/core-concepts.md +380 -0
- package/skills/lamindb/references/data-management.md +433 -0
- package/skills/lamindb/references/integrations.md +642 -0
- package/skills/lamindb/references/ontologies.md +497 -0
- package/skills/lamindb/references/setup-deployment.md +733 -0
- package/skills/latchbio-integration/SKILL.md +351 -0
- package/skills/latchbio-integration/references/data-management.md +427 -0
- package/skills/latchbio-integration/references/resource-configuration.md +429 -0
- package/skills/latchbio-integration/references/verified-workflows.md +487 -0
- package/skills/latchbio-integration/references/workflow-creation.md +254 -0
- package/skills/latex-posters/SKILL.md +1602 -0
- package/skills/latex-posters/assets/baposter_template.tex +257 -0
- package/skills/latex-posters/assets/beamerposter_template.tex +244 -0
- package/skills/latex-posters/assets/poster_quality_checklist.md +358 -0
- package/skills/latex-posters/assets/tikzposter_template.tex +251 -0
- package/skills/latex-posters/references/README.md +417 -0
- package/skills/latex-posters/references/latex_poster_packages.md +745 -0
- package/skills/latex-posters/references/poster_content_guide.md +748 -0
- package/skills/latex-posters/references/poster_design_principles.md +806 -0
- package/skills/latex-posters/references/poster_layout_design.md +900 -0
- package/skills/latex-posters/scripts/review_poster.sh +214 -0
- package/skills/literature-review/SKILL.md +637 -0
- package/skills/literature-review/assets/review_template.md +412 -0
- package/skills/literature-review/references/citation_styles.md +166 -0
- package/skills/literature-review/references/database_strategies.md +455 -0
- package/skills/literature-review/scripts/generate_pdf.py +176 -0
- package/skills/literature-review/scripts/search_databases.py +303 -0
- package/skills/literature-review/scripts/verify_citations.py +222 -0
- package/skills/markdown-mermaid-writing/SKILL.md +327 -0
- package/skills/markdown-mermaid-writing/assets/examples/example-research-report.md +221 -0
- package/skills/markdown-mermaid-writing/references/diagrams/architecture.md +108 -0
- package/skills/markdown-mermaid-writing/references/diagrams/block.md +177 -0
- package/skills/markdown-mermaid-writing/references/diagrams/c4.md +136 -0
- package/skills/markdown-mermaid-writing/references/diagrams/class.md +246 -0
- package/skills/markdown-mermaid-writing/references/diagrams/complex_examples.md +384 -0
- package/skills/markdown-mermaid-writing/references/diagrams/er.md +222 -0
- package/skills/markdown-mermaid-writing/references/diagrams/flowchart.md +177 -0
- package/skills/markdown-mermaid-writing/references/diagrams/gantt.md +138 -0
- package/skills/markdown-mermaid-writing/references/diagrams/git_graph.md +74 -0
- package/skills/markdown-mermaid-writing/references/diagrams/kanban.md +107 -0
- package/skills/markdown-mermaid-writing/references/diagrams/mindmap.md +74 -0
- package/skills/markdown-mermaid-writing/references/diagrams/packet.md +55 -0
- package/skills/markdown-mermaid-writing/references/diagrams/pie.md +52 -0
- package/skills/markdown-mermaid-writing/references/diagrams/quadrant.md +66 -0
- package/skills/markdown-mermaid-writing/references/diagrams/radar.md +59 -0
- package/skills/markdown-mermaid-writing/references/diagrams/requirement.md +88 -0
- package/skills/markdown-mermaid-writing/references/diagrams/sankey.md +71 -0
- package/skills/markdown-mermaid-writing/references/diagrams/sequence.md +174 -0
- package/skills/markdown-mermaid-writing/references/diagrams/state.md +150 -0
- package/skills/markdown-mermaid-writing/references/diagrams/timeline.md +96 -0
- package/skills/markdown-mermaid-writing/references/diagrams/treemap.md +66 -0
- package/skills/markdown-mermaid-writing/references/diagrams/user_journey.md +108 -0
- package/skills/markdown-mermaid-writing/references/diagrams/xy_chart.md +53 -0
- package/skills/markdown-mermaid-writing/references/diagrams/zenuml.md +71 -0
- package/skills/markdown-mermaid-writing/references/markdown_style_guide.md +733 -0
- package/skills/markdown-mermaid-writing/references/mermaid_style_guide.md +458 -0
- package/skills/markdown-mermaid-writing/templates/decision_record.md +211 -0
- package/skills/markdown-mermaid-writing/templates/how_to_guide.md +275 -0
- package/skills/markdown-mermaid-writing/templates/issue.md +303 -0
- package/skills/markdown-mermaid-writing/templates/kanban.md +223 -0
- package/skills/markdown-mermaid-writing/templates/presentation.md +312 -0
- package/skills/markdown-mermaid-writing/templates/project_documentation.md +412 -0
- package/skills/markdown-mermaid-writing/templates/pull_request.md +319 -0
- package/skills/markdown-mermaid-writing/templates/research_paper.md +304 -0
- package/skills/markdown-mermaid-writing/templates/status_report.md +185 -0
- package/skills/market-research-reports/SKILL.md +905 -0
- package/skills/market-research-reports/assets/FORMATTING_GUIDE.md +428 -0
- package/skills/market-research-reports/assets/market_report_template.tex +1380 -0
- package/skills/market-research-reports/assets/market_research.sty +564 -0
- package/skills/market-research-reports/references/data_analysis_patterns.md +548 -0
- package/skills/market-research-reports/references/report_structure_guide.md +999 -0
- package/skills/market-research-reports/references/visual_generation_guide.md +1077 -0
- package/skills/market-research-reports/scripts/generate_market_visuals.py +529 -0
- package/skills/markitdown/SKILL.md +488 -0
- package/skills/markitdown/assets/example_usage.md +463 -0
- package/skills/markitdown/references/api_reference.md +396 -0
- package/skills/markitdown/references/file_formats.md +542 -0
- package/skills/markitdown/scripts/batch_convert.py +228 -0
- package/skills/markitdown/scripts/convert_literature.py +283 -0
- package/skills/markitdown/scripts/convert_with_ai.py +240 -0
- package/skills/matchms/SKILL.md +201 -0
- package/skills/matchms/references/filtering.md +288 -0
- package/skills/matchms/references/importing_exporting.md +416 -0
- package/skills/matchms/references/similarity.md +380 -0
- package/skills/matchms/references/workflows.md +647 -0
- package/skills/matlab/SKILL.md +376 -0
- package/skills/matlab/references/data-import-export.md +479 -0
- package/skills/matlab/references/executing-scripts.md +444 -0
- package/skills/matlab/references/graphics-visualization.md +579 -0
- package/skills/matlab/references/mathematics.md +553 -0
- package/skills/matlab/references/matrices-arrays.md +349 -0
- package/skills/matlab/references/octave-compatibility.md +544 -0
- package/skills/matlab/references/programming.md +672 -0
- package/skills/matlab/references/python-integration.md +433 -0
- package/skills/matplotlib/SKILL.md +359 -0
- package/skills/matplotlib/references/api_reference.md +412 -0
- package/skills/matplotlib/references/common_issues.md +563 -0
- package/skills/matplotlib/references/plot_types.md +476 -0
- package/skills/matplotlib/references/styling_guide.md +589 -0
- package/skills/matplotlib/scripts/plot_template.py +401 -0
- package/skills/matplotlib/scripts/style_configurator.py +409 -0
- package/skills/medchem/SKILL.md +404 -0
- package/skills/medchem/references/api_guide.md +600 -0
- package/skills/medchem/references/rules_catalog.md +604 -0
- package/skills/medchem/scripts/filter_molecules.py +418 -0
- package/skills/metabolomics-workbench-database/SKILL.md +257 -0
- package/skills/metabolomics-workbench-database/references/api_reference.md +494 -0
- package/skills/modal/SKILL.md +406 -0
- package/skills/modal/references/api_reference.md +187 -0
- package/skills/modal/references/examples.md +266 -0
- package/skills/modal/references/functions.md +260 -0
- package/skills/modal/references/getting-started.md +175 -0
- package/skills/modal/references/gpu.md +174 -0
- package/skills/modal/references/images.md +259 -0
- package/skills/modal/references/resources.md +117 -0
- package/skills/modal/references/scaling.md +173 -0
- package/skills/modal/references/scheduled-jobs.md +143 -0
- package/skills/modal/references/secrets.md +119 -0
- package/skills/modal/references/volumes.md +247 -0
- package/skills/modal/references/web-endpoints.md +254 -0
- package/skills/modal-compute/SKILL.md +56 -0
- package/skills/molecular-dynamics/SKILL.md +457 -0
- package/skills/molecular-dynamics/references/mdanalysis_analysis.md +208 -0
- package/skills/molfeat/SKILL.md +509 -0
- package/skills/molfeat/references/api_reference.md +428 -0
- package/skills/molfeat/references/available_featurizers.md +333 -0
- package/skills/molfeat/references/examples.md +723 -0
- package/skills/monarch-database/SKILL.md +372 -0
- package/skills/monarch-database/references/phenotype_ontology.md +160 -0
- package/skills/networkx/SKILL.md +435 -0
- package/skills/networkx/references/algorithms.md +383 -0
- package/skills/networkx/references/generators.md +378 -0
- package/skills/networkx/references/graph-basics.md +283 -0
- package/skills/networkx/references/io.md +441 -0
- package/skills/networkx/references/visualization.md +529 -0
- package/skills/neurokit2/SKILL.md +354 -0
- package/skills/neurokit2/references/bio_module.md +417 -0
- package/skills/neurokit2/references/complexity.md +715 -0
- package/skills/neurokit2/references/ecg_cardiac.md +355 -0
- package/skills/neurokit2/references/eda.md +497 -0
- package/skills/neurokit2/references/eeg.md +506 -0
- package/skills/neurokit2/references/emg.md +408 -0
- package/skills/neurokit2/references/eog.md +407 -0
- package/skills/neurokit2/references/epochs_events.md +471 -0
- package/skills/neurokit2/references/hrv.md +480 -0
- package/skills/neurokit2/references/ppg.md +413 -0
- package/skills/neurokit2/references/rsp.md +510 -0
- package/skills/neurokit2/references/signal_processing.md +648 -0
- package/skills/neuropixels-analysis/SKILL.md +348 -0
- package/skills/neuropixels-analysis/assets/analysis_template.py +271 -0
- package/skills/neuropixels-analysis/references/AI_CURATION.md +345 -0
- package/skills/neuropixels-analysis/references/ANALYSIS.md +392 -0
- package/skills/neuropixels-analysis/references/AUTOMATED_CURATION.md +358 -0
- package/skills/neuropixels-analysis/references/MOTION_CORRECTION.md +323 -0
- package/skills/neuropixels-analysis/references/PREPROCESSING.md +273 -0
- package/skills/neuropixels-analysis/references/QUALITY_METRICS.md +359 -0
- package/skills/neuropixels-analysis/references/SPIKE_SORTING.md +339 -0
- package/skills/neuropixels-analysis/references/api_reference.md +415 -0
- package/skills/neuropixels-analysis/references/plotting_guide.md +454 -0
- package/skills/neuropixels-analysis/references/standard_workflow.md +385 -0
- package/skills/neuropixels-analysis/scripts/compute_metrics.py +178 -0
- package/skills/neuropixels-analysis/scripts/explore_recording.py +168 -0
- package/skills/neuropixels-analysis/scripts/export_to_phy.py +79 -0
- package/skills/neuropixels-analysis/scripts/neuropixels_pipeline.py +432 -0
- package/skills/neuropixels-analysis/scripts/preprocess_recording.py +122 -0
- package/skills/neuropixels-analysis/scripts/run_sorting.py +98 -0
- package/skills/offer-k-dense-web/SKILL.md +21 -0
- package/skills/omero-integration/SKILL.md +249 -0
- package/skills/omero-integration/references/advanced.md +631 -0
- package/skills/omero-integration/references/connection.md +369 -0
- package/skills/omero-integration/references/data_access.md +544 -0
- package/skills/omero-integration/references/image_processing.md +665 -0
- package/skills/omero-integration/references/metadata.md +688 -0
- package/skills/omero-integration/references/rois.md +648 -0
- package/skills/omero-integration/references/scripts.md +637 -0
- package/skills/omero-integration/references/tables.md +532 -0
- package/skills/open-notebook/SKILL.md +289 -0
- package/skills/open-notebook/references/api_reference.md +715 -0
- package/skills/open-notebook/references/architecture.md +163 -0
- package/skills/open-notebook/references/configuration.md +226 -0
- package/skills/open-notebook/references/examples.md +290 -0
- package/skills/open-notebook/scripts/chat_interaction.py +190 -0
- package/skills/open-notebook/scripts/notebook_management.py +142 -0
- package/skills/open-notebook/scripts/source_ingestion.py +160 -0
- package/skills/open-notebook/scripts/test_open_notebook_skill.py +423 -0
- package/skills/openalex-database/SKILL.md +496 -0
- package/skills/openalex-database/references/api_guide.md +371 -0
- package/skills/openalex-database/references/common_queries.md +381 -0
- package/skills/openalex-database/scripts/openalex_client.py +337 -0
- package/skills/openalex-database/scripts/query_helpers.py +306 -0
- package/skills/opentargets-database/SKILL.md +371 -0
- package/skills/opentargets-database/references/api_reference.md +249 -0
- package/skills/opentargets-database/references/evidence_types.md +306 -0
- package/skills/opentargets-database/references/target_annotations.md +401 -0
- package/skills/opentargets-database/scripts/query_opentargets.py +403 -0
- package/skills/opentrons-integration/SKILL.md +571 -0
- package/skills/opentrons-integration/references/api_reference.md +366 -0
- package/skills/opentrons-integration/scripts/basic_protocol_template.py +67 -0
- package/skills/opentrons-integration/scripts/pcr_setup_template.py +154 -0
- package/skills/opentrons-integration/scripts/serial_dilution_template.py +96 -0
- package/skills/paper-2-web/SKILL.md +495 -0
- package/skills/paper-2-web/references/installation.md +141 -0
- package/skills/paper-2-web/references/paper2poster.md +346 -0
- package/skills/paper-2-web/references/paper2video.md +305 -0
- package/skills/paper-2-web/references/paper2web.md +187 -0
- package/skills/paper-2-web/references/usage_examples.md +436 -0
- package/skills/paper-code-audit/SKILL.md +12 -0
- package/skills/paper-writing/SKILL.md +12 -0
- package/skills/parallel-web/SKILL.md +314 -0
- package/skills/parallel-web/references/api_reference.md +244 -0
- package/skills/parallel-web/references/deep_research_guide.md +362 -0
- package/skills/parallel-web/references/extraction_patterns.md +338 -0
- package/skills/parallel-web/references/search_best_practices.md +297 -0
- package/skills/parallel-web/references/workflow_recipes.md +456 -0
- package/skills/parallel-web/scripts/parallel_web.py +568 -0
- package/skills/parse-document/SKILL.md +139 -0
- package/skills/pathml/SKILL.md +164 -0
- package/skills/pathml/references/data_management.md +742 -0
- package/skills/pathml/references/graphs.md +653 -0
- package/skills/pathml/references/image_loading.md +448 -0
- package/skills/pathml/references/machine_learning.md +725 -0
- package/skills/pathml/references/multiparametric.md +686 -0
- package/skills/pathml/references/preprocessing.md +722 -0
- package/skills/pdb-database/SKILL.md +307 -0
- package/skills/pdb-database/references/api_reference.md +617 -0
- package/skills/pdf/LICENSE.txt +30 -0
- package/skills/pdf/SKILL.md +314 -0
- package/skills/pdf/forms.md +294 -0
- package/skills/pdf/reference.md +612 -0
- package/skills/pdf/scripts/check_bounding_boxes.py +65 -0
- package/skills/pdf/scripts/check_fillable_fields.py +11 -0
- package/skills/pdf/scripts/convert_pdf_to_images.py +33 -0
- package/skills/pdf/scripts/create_validation_image.py +37 -0
- package/skills/pdf/scripts/extract_form_field_info.py +122 -0
- package/skills/pdf/scripts/extract_form_structure.py +115 -0
- package/skills/pdf/scripts/fill_fillable_fields.py +98 -0
- package/skills/pdf/scripts/fill_pdf_form_with_annotations.py +107 -0
- package/skills/peer-review/SKILL.md +569 -0
- package/skills/peer-review/references/common_issues.md +552 -0
- package/skills/peer-review/references/reporting_standards.md +290 -0
- package/skills/pennylane/SKILL.md +224 -0
- package/skills/pennylane/references/advanced_features.md +667 -0
- package/skills/pennylane/references/devices_backends.md +596 -0
- package/skills/pennylane/references/getting_started.md +227 -0
- package/skills/pennylane/references/optimization.md +671 -0
- package/skills/pennylane/references/quantum_chemistry.md +567 -0
- package/skills/pennylane/references/quantum_circuits.md +437 -0
- package/skills/pennylane/references/quantum_ml.md +571 -0
- package/skills/perplexity-search/SKILL.md +446 -0
- package/skills/perplexity-search/assets/.env.example +16 -0
- package/skills/perplexity-search/references/model_comparison.md +386 -0
- package/skills/perplexity-search/references/openrouter_setup.md +454 -0
- package/skills/perplexity-search/references/search_strategies.md +258 -0
- package/skills/perplexity-search/scripts/perplexity_search.py +277 -0
- package/skills/perplexity-search/scripts/setup_env.py +171 -0
- package/skills/phylogenetics/SKILL.md +404 -0
- package/skills/phylogenetics/references/iqtree_inference.md +181 -0
- package/skills/phylogenetics/scripts/phylogenetic_analysis.py +270 -0
- package/skills/plotly/SKILL.md +265 -0
- package/skills/plotly/references/chart-types.md +488 -0
- package/skills/plotly/references/export-interactivity.md +453 -0
- package/skills/plotly/references/graph-objects.md +302 -0
- package/skills/plotly/references/layouts-styling.md +457 -0
- package/skills/plotly/references/plotly-express.md +213 -0
- package/skills/polars/SKILL.md +385 -0
- package/skills/polars/references/best_practices.md +649 -0
- package/skills/polars/references/core_concepts.md +378 -0
- package/skills/polars/references/io_guide.md +557 -0
- package/skills/polars/references/operations.md +602 -0
- package/skills/polars/references/pandas_migration.md +417 -0
- package/skills/polars/references/transformations.md +549 -0
- package/skills/polars-bio/SKILL.md +374 -0
- package/skills/polars-bio/references/bioframe_migration.md +250 -0
- package/skills/polars-bio/references/configuration.md +175 -0
- package/skills/polars-bio/references/file_io.md +414 -0
- package/skills/polars-bio/references/interval_operations.md +362 -0
- package/skills/polars-bio/references/pileup_operations.md +176 -0
- package/skills/polars-bio/references/sql_processing.md +224 -0
- package/skills/pptx/LICENSE.txt +30 -0
- package/skills/pptx/SKILL.md +232 -0
- package/skills/pptx/editing.md +205 -0
- package/skills/pptx/pptxgenjs.md +420 -0
- package/skills/pptx/scripts/__init__.py +0 -0
- package/skills/pptx/scripts/add_slide.py +195 -0
- package/skills/pptx/scripts/clean.py +286 -0
- package/skills/pptx/scripts/office/helpers/__init__.py +0 -0
- package/skills/pptx/scripts/office/helpers/merge_runs.py +199 -0
- package/skills/pptx/scripts/office/helpers/simplify_redlines.py +197 -0
- package/skills/pptx/scripts/office/pack.py +159 -0
- package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
- package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
- package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
- package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
- package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
- package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
- package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
- package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
- package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
- package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
- package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
- package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
- package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
- package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
- package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
- package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
- package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
- package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
- package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
- package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
- package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
- package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
- package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
- package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
- package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
- package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
- package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
- package/skills/pptx/scripts/office/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
- package/skills/pptx/scripts/office/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
- package/skills/pptx/scripts/office/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
- package/skills/pptx/scripts/office/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
- package/skills/pptx/scripts/office/schemas/mce/mc.xsd +75 -0
- package/skills/pptx/scripts/office/schemas/microsoft/wml-2010.xsd +560 -0
- package/skills/pptx/scripts/office/schemas/microsoft/wml-2012.xsd +67 -0
- package/skills/pptx/scripts/office/schemas/microsoft/wml-2018.xsd +14 -0
- package/skills/pptx/scripts/office/schemas/microsoft/wml-cex-2018.xsd +20 -0
- package/skills/pptx/scripts/office/schemas/microsoft/wml-cid-2016.xsd +13 -0
- package/skills/pptx/scripts/office/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
- package/skills/pptx/scripts/office/schemas/microsoft/wml-symex-2015.xsd +8 -0
- package/skills/pptx/scripts/office/soffice.py +183 -0
- package/skills/pptx/scripts/office/unpack.py +132 -0
- package/skills/pptx/scripts/office/validate.py +111 -0
- package/skills/pptx/scripts/office/validators/__init__.py +15 -0
- package/skills/pptx/scripts/office/validators/base.py +847 -0
- package/skills/pptx/scripts/office/validators/docx.py +446 -0
- package/skills/pptx/scripts/office/validators/pptx.py +275 -0
- package/skills/pptx/scripts/office/validators/redlining.py +247 -0
- package/skills/pptx/scripts/thumbnail.py +289 -0
- package/skills/pptx-posters/SKILL.md +414 -0
- package/skills/pptx-posters/assets/poster_html_template.html +257 -0
- package/skills/pptx-posters/assets/poster_quality_checklist.md +358 -0
- package/skills/pptx-posters/references/poster_content_guide.md +748 -0
- package/skills/pptx-posters/references/poster_design_principles.md +806 -0
- package/skills/pptx-posters/references/poster_layout_design.md +900 -0
- package/skills/preview/SKILL.md +27 -0
- package/skills/primekg/SKILL.md +97 -0
- package/skills/primekg/scripts/query_primekg.py +123 -0
- package/skills/protocolsio-integration/SKILL.md +419 -0
- package/skills/protocolsio-integration/references/additional_features.md +387 -0
- package/skills/protocolsio-integration/references/authentication.md +100 -0
- package/skills/protocolsio-integration/references/discussions.md +225 -0
- package/skills/protocolsio-integration/references/file_manager.md +412 -0
- package/skills/protocolsio-integration/references/protocols_api.md +294 -0
- package/skills/protocolsio-integration/references/workspaces.md +293 -0
- package/skills/pubchem-database/SKILL.md +572 -0
- package/skills/pubchem-database/references/api_reference.md +440 -0
- package/skills/pubchem-database/scripts/bioactivity_query.py +367 -0
- package/skills/pubchem-database/scripts/compound_search.py +297 -0
- package/skills/pubmed-database/SKILL.md +458 -0
- package/skills/pubmed-database/references/api_reference.md +298 -0
- package/skills/pubmed-database/references/common_queries.md +453 -0
- package/skills/pubmed-database/references/search_syntax.md +436 -0
- package/skills/pufferlib/SKILL.md +434 -0
- package/skills/pufferlib/references/environments.md +508 -0
- package/skills/pufferlib/references/integration.md +621 -0
- package/skills/pufferlib/references/policies.md +653 -0
- package/skills/pufferlib/references/training.md +360 -0
- package/skills/pufferlib/references/vectorization.md +557 -0
- package/skills/pufferlib/scripts/env_template.py +340 -0
- package/skills/pufferlib/scripts/train_template.py +239 -0
- package/skills/pydeseq2/SKILL.md +557 -0
- package/skills/pydeseq2/references/api_reference.md +228 -0
- package/skills/pydeseq2/references/workflow_guide.md +582 -0
- package/skills/pydeseq2/scripts/run_deseq2_analysis.py +353 -0
- package/skills/pydicom/SKILL.md +432 -0
- package/skills/pydicom/references/common_tags.md +228 -0
- package/skills/pydicom/references/transfer_syntaxes.md +352 -0
- package/skills/pydicom/scripts/anonymize_dicom.py +137 -0
- package/skills/pydicom/scripts/dicom_to_image.py +172 -0
- package/skills/pydicom/scripts/extract_metadata.py +173 -0
- package/skills/pyhealth/SKILL.md +489 -0
- package/skills/pyhealth/references/datasets.md +178 -0
- package/skills/pyhealth/references/medical_coding.md +284 -0
- package/skills/pyhealth/references/models.md +594 -0
- package/skills/pyhealth/references/preprocessing.md +638 -0
- package/skills/pyhealth/references/tasks.md +379 -0
- package/skills/pyhealth/references/training_evaluation.md +648 -0
- package/skills/pylabrobot/SKILL.md +183 -0
- package/skills/pylabrobot/references/analytical-equipment.md +464 -0
- package/skills/pylabrobot/references/hardware-backends.md +480 -0
- package/skills/pylabrobot/references/liquid-handling.md +403 -0
- package/skills/pylabrobot/references/material-handling.md +620 -0
- package/skills/pylabrobot/references/resources.md +489 -0
- package/skills/pylabrobot/references/visualization.md +532 -0
- package/skills/pymatgen/SKILL.md +689 -0
- package/skills/pymatgen/references/analysis_modules.md +530 -0
- package/skills/pymatgen/references/core_classes.md +318 -0
- package/skills/pymatgen/references/io_formats.md +469 -0
- package/skills/pymatgen/references/materials_project_api.md +517 -0
- package/skills/pymatgen/references/transformations_workflows.md +591 -0
- package/skills/pymatgen/scripts/phase_diagram_generator.py +233 -0
- package/skills/pymatgen/scripts/structure_analyzer.py +266 -0
- package/skills/pymatgen/scripts/structure_converter.py +169 -0
- package/skills/pymc/SKILL.md +570 -0
- package/skills/pymc/assets/hierarchical_model_template.py +333 -0
- package/skills/pymc/assets/linear_regression_template.py +241 -0
- package/skills/pymc/references/distributions.md +320 -0
- package/skills/pymc/references/sampling_inference.md +424 -0
- package/skills/pymc/references/workflows.md +526 -0
- package/skills/pymc/scripts/model_comparison.py +387 -0
- package/skills/pymc/scripts/model_diagnostics.py +350 -0
- package/skills/pymoo/SKILL.md +569 -0
- package/skills/pymoo/references/algorithms.md +180 -0
- package/skills/pymoo/references/constraints_mcdm.md +417 -0
- package/skills/pymoo/references/operators.md +345 -0
- package/skills/pymoo/references/problems.md +265 -0
- package/skills/pymoo/references/visualization.md +353 -0
- package/skills/pymoo/scripts/custom_problem_example.py +181 -0
- package/skills/pymoo/scripts/decision_making_example.py +161 -0
- package/skills/pymoo/scripts/many_objective_example.py +72 -0
- package/skills/pymoo/scripts/multi_objective_example.py +63 -0
- package/skills/pymoo/scripts/single_objective_example.py +59 -0
- package/skills/pyopenms/SKILL.md +215 -0
- package/skills/pyopenms/references/data_structures.md +497 -0
- package/skills/pyopenms/references/feature_detection.md +410 -0
- package/skills/pyopenms/references/file_io.md +349 -0
- package/skills/pyopenms/references/identification.md +422 -0
- package/skills/pyopenms/references/metabolomics.md +482 -0
- package/skills/pyopenms/references/signal_processing.md +433 -0
- package/skills/pysam/SKILL.md +263 -0
- package/skills/pysam/references/alignment_files.md +280 -0
- package/skills/pysam/references/common_workflows.md +520 -0
- package/skills/pysam/references/sequence_files.md +407 -0
- package/skills/pysam/references/variant_files.md +365 -0
- package/skills/pytdc/SKILL.md +458 -0
- package/skills/pytdc/references/datasets.md +246 -0
- package/skills/pytdc/references/oracles.md +400 -0
- package/skills/pytdc/references/utilities.md +684 -0
- package/skills/pytdc/scripts/benchmark_evaluation.py +327 -0
- package/skills/pytdc/scripts/load_and_split_data.py +214 -0
- package/skills/pytdc/scripts/molecular_generation.py +404 -0
- package/skills/pytorch-lightning/SKILL.md +172 -0
- package/skills/pytorch-lightning/references/best_practices.md +724 -0
- package/skills/pytorch-lightning/references/callbacks.md +564 -0
- package/skills/pytorch-lightning/references/data_module.md +565 -0
- package/skills/pytorch-lightning/references/distributed_training.md +643 -0
- package/skills/pytorch-lightning/references/lightning_module.md +487 -0
- package/skills/pytorch-lightning/references/logging.md +654 -0
- package/skills/pytorch-lightning/references/trainer.md +641 -0
- package/skills/pytorch-lightning/scripts/quick_trainer_setup.py +454 -0
- package/skills/pytorch-lightning/scripts/template_datamodule.py +328 -0
- package/skills/pytorch-lightning/scripts/template_lightning_module.py +219 -0
- package/skills/pyzotero/SKILL.md +111 -0
- package/skills/pyzotero/references/authentication.md +90 -0
- package/skills/pyzotero/references/cli.md +100 -0
- package/skills/pyzotero/references/collections.md +113 -0
- package/skills/pyzotero/references/error-handling.md +103 -0
- package/skills/pyzotero/references/exports.md +102 -0
- package/skills/pyzotero/references/files-attachments.md +97 -0
- package/skills/pyzotero/references/full-text.md +68 -0
- package/skills/pyzotero/references/pagination.md +79 -0
- package/skills/pyzotero/references/read-api.md +137 -0
- package/skills/pyzotero/references/saved-searches.md +77 -0
- package/skills/pyzotero/references/search-params.md +90 -0
- package/skills/pyzotero/references/tags.md +87 -0
- package/skills/pyzotero/references/write-api.md +123 -0
- package/skills/qiskit/SKILL.md +273 -0
- package/skills/qiskit/references/algorithms.md +607 -0
- package/skills/qiskit/references/backends.md +433 -0
- package/skills/qiskit/references/circuits.md +197 -0
- package/skills/qiskit/references/patterns.md +533 -0
- package/skills/qiskit/references/primitives.md +277 -0
- package/skills/qiskit/references/setup.md +99 -0
- package/skills/qiskit/references/transpilation.md +286 -0
- package/skills/qiskit/references/visualization.md +415 -0
- package/skills/qutip/SKILL.md +316 -0
- package/skills/qutip/references/advanced.md +555 -0
- package/skills/qutip/references/analysis.md +523 -0
- package/skills/qutip/references/core_concepts.md +293 -0
- package/skills/qutip/references/time_evolution.md +348 -0
- package/skills/qutip/references/visualization.md +431 -0
- package/skills/rdkit/SKILL.md +778 -0
- package/skills/rdkit/references/api_reference.md +432 -0
- package/skills/rdkit/references/descriptors_reference.md +595 -0
- package/skills/rdkit/references/smarts_patterns.md +668 -0
- package/skills/rdkit/scripts/molecular_properties.py +243 -0
- package/skills/rdkit/scripts/similarity_search.py +297 -0
- package/skills/rdkit/scripts/substructure_filter.py +386 -0
- package/skills/reactome-database/SKILL.md +276 -0
- package/skills/reactome-database/references/api_reference.md +465 -0
- package/skills/reactome-database/scripts/reactome_query.py +286 -0
- package/skills/replication/SKILL.md +14 -0
- package/skills/research-grants/SKILL.md +955 -0
- package/skills/research-grants/assets/budget_justification_template.md +453 -0
- package/skills/research-grants/assets/nih_specific_aims_template.md +166 -0
- package/skills/research-grants/assets/nsf_project_summary_template.md +92 -0
- package/skills/research-grants/references/README.md +285 -0
- package/skills/research-grants/references/broader_impacts.md +392 -0
- package/skills/research-grants/references/darpa_guidelines.md +636 -0
- package/skills/research-grants/references/doe_guidelines.md +586 -0
- package/skills/research-grants/references/nih_guidelines.md +851 -0
- package/skills/research-grants/references/nsf_guidelines.md +570 -0
- package/skills/research-grants/references/nstc_guidelines.md +733 -0
- package/skills/research-grants/references/specific_aims_guide.md +458 -0
- package/skills/research-lookup/README.md +156 -0
- package/skills/research-lookup/SKILL.md +413 -0
- package/skills/research-lookup/examples.py +174 -0
- package/skills/research-lookup/lookup.py +187 -0
- package/skills/research-lookup/research_lookup.py +566 -0
- package/skills/research-lookup/scripts/research_lookup.py +566 -0
- package/skills/rowan/SKILL.md +427 -0
- package/skills/rowan/references/api_reference.md +413 -0
- package/skills/rowan/references/molecule_handling.md +429 -0
- package/skills/rowan/references/proteins_and_organization.md +499 -0
- package/skills/rowan/references/rdkit_native.md +438 -0
- package/skills/rowan/references/results_interpretation.md +481 -0
- package/skills/rowan/references/workflow_types.md +591 -0
- package/skills/runpod-compute/SKILL.md +48 -0
- package/skills/scanpy/SKILL.md +384 -0
- package/skills/scanpy/assets/analysis_template.py +295 -0
- package/skills/scanpy/references/api_reference.md +251 -0
- package/skills/scanpy/references/plotting_guide.md +352 -0
- package/skills/scanpy/references/standard_workflow.md +206 -0
- package/skills/scanpy/scripts/qc_analysis.py +200 -0
- package/skills/scholar-evaluation/SKILL.md +298 -0
- package/skills/scholar-evaluation/references/evaluation_framework.md +663 -0
- package/skills/scholar-evaluation/scripts/calculate_scores.py +378 -0
- package/skills/scientific-brainstorming/SKILL.md +189 -0
- package/skills/scientific-brainstorming/references/brainstorming_methods.md +326 -0
- package/skills/scientific-critical-thinking/SKILL.md +570 -0
- package/skills/scientific-critical-thinking/references/common_biases.md +364 -0
- package/skills/scientific-critical-thinking/references/evidence_hierarchy.md +484 -0
- package/skills/scientific-critical-thinking/references/experimental_design.md +496 -0
- package/skills/scientific-critical-thinking/references/logical_fallacies.md +478 -0
- package/skills/scientific-critical-thinking/references/scientific_method.md +169 -0
- package/skills/scientific-critical-thinking/references/statistical_pitfalls.md +506 -0
- package/skills/scientific-schematics/SKILL.md +619 -0
- package/skills/scientific-schematics/references/QUICK_REFERENCE.md +207 -0
- package/skills/scientific-schematics/references/README.md +327 -0
- package/skills/scientific-schematics/references/best_practices.md +560 -0
- package/skills/scientific-schematics/scripts/example_usage.sh +89 -0
- package/skills/scientific-schematics/scripts/generate_schematic.py +139 -0
- package/skills/scientific-schematics/scripts/generate_schematic_ai.py +844 -0
- package/skills/scientific-slides/SKILL.md +1154 -0
- package/skills/scientific-slides/assets/beamer_template_conference.tex +407 -0
- package/skills/scientific-slides/assets/beamer_template_defense.tex +906 -0
- package/skills/scientific-slides/assets/beamer_template_seminar.tex +870 -0
- package/skills/scientific-slides/assets/powerpoint_design_guide.md +662 -0
- package/skills/scientific-slides/assets/timing_guidelines.md +597 -0
- package/skills/scientific-slides/references/beamer_guide.md +1019 -0
- package/skills/scientific-slides/references/data_visualization_slides.md +708 -0
- package/skills/scientific-slides/references/presentation_structure.md +642 -0
- package/skills/scientific-slides/references/slide_design_principles.md +849 -0
- package/skills/scientific-slides/references/talk_types_guide.md +687 -0
- package/skills/scientific-slides/references/visual_review_workflow.md +775 -0
- package/skills/scientific-slides/scripts/generate_slide_image.py +140 -0
- package/skills/scientific-slides/scripts/generate_slide_image_ai.py +763 -0
- package/skills/scientific-slides/scripts/pdf_to_images.py +221 -0
- package/skills/scientific-slides/scripts/slides_to_pdf.py +235 -0
- package/skills/scientific-slides/scripts/validate_presentation.py +403 -0
- package/skills/scientific-visualization/SKILL.md +777 -0
- package/skills/scientific-visualization/assets/color_palettes.py +197 -0
- package/skills/scientific-visualization/assets/nature.mplstyle +63 -0
- package/skills/scientific-visualization/assets/presentation.mplstyle +61 -0
- package/skills/scientific-visualization/assets/publication.mplstyle +68 -0
- package/skills/scientific-visualization/references/color_palettes.md +348 -0
- package/skills/scientific-visualization/references/journal_requirements.md +320 -0
- package/skills/scientific-visualization/references/matplotlib_examples.md +620 -0
- package/skills/scientific-visualization/references/publication_guidelines.md +205 -0
- package/skills/scientific-visualization/scripts/figure_export.py +343 -0
- package/skills/scientific-visualization/scripts/style_presets.py +416 -0
- package/skills/scientific-workflows/SKILL.md +1684 -0
- package/skills/scientific-writing/SKILL.md +718 -0
- package/skills/scientific-writing/assets/REPORT_FORMATTING_GUIDE.md +574 -0
- package/skills/scientific-writing/assets/scientific_report.sty +606 -0
- package/skills/scientific-writing/assets/scientific_report_template.tex +449 -0
- package/skills/scientific-writing/references/citation_styles.md +720 -0
- package/skills/scientific-writing/references/figures_tables.md +806 -0
- package/skills/scientific-writing/references/imrad_structure.md +686 -0
- package/skills/scientific-writing/references/professional_report_formatting.md +664 -0
- package/skills/scientific-writing/references/reporting_guidelines.md +748 -0
- package/skills/scientific-writing/references/writing_principles.md +824 -0
- package/skills/scikit-bio/SKILL.md +435 -0
- package/skills/scikit-bio/references/api_reference.md +749 -0
- package/skills/scikit-learn/SKILL.md +519 -0
- package/skills/scikit-learn/references/model_evaluation.md +592 -0
- package/skills/scikit-learn/references/pipelines_and_composition.md +612 -0
- package/skills/scikit-learn/references/preprocessing.md +606 -0
- package/skills/scikit-learn/references/quick_reference.md +433 -0
- package/skills/scikit-learn/references/supervised_learning.md +378 -0
- package/skills/scikit-learn/references/unsupervised_learning.md +505 -0
- package/skills/scikit-learn/scripts/classification_pipeline.py +257 -0
- package/skills/scikit-learn/scripts/clustering_analysis.py +386 -0
- package/skills/scikit-survival/SKILL.md +397 -0
- package/skills/scikit-survival/references/competing-risks.md +397 -0
- package/skills/scikit-survival/references/cox-models.md +182 -0
- package/skills/scikit-survival/references/data-handling.md +494 -0
- package/skills/scikit-survival/references/ensemble-models.md +327 -0
- package/skills/scikit-survival/references/evaluation-metrics.md +378 -0
- package/skills/scikit-survival/references/svm-models.md +411 -0
- package/skills/scvelo/SKILL.md +321 -0
- package/skills/scvelo/references/velocity_models.md +168 -0
- package/skills/scvelo/scripts/rna_velocity_workflow.py +232 -0
- package/skills/scvi-tools/SKILL.md +188 -0
- package/skills/scvi-tools/references/differential-expression.md +581 -0
- package/skills/scvi-tools/references/models-atac-seq.md +321 -0
- package/skills/scvi-tools/references/models-multimodal.md +367 -0
- package/skills/scvi-tools/references/models-scrna-seq.md +330 -0
- package/skills/scvi-tools/references/models-spatial.md +438 -0
- package/skills/scvi-tools/references/models-specialized.md +408 -0
- package/skills/scvi-tools/references/theoretical-foundations.md +438 -0
- package/skills/scvi-tools/references/workflows.md +546 -0
- package/skills/seaborn/SKILL.md +671 -0
- package/skills/seaborn/references/examples.md +822 -0
- package/skills/seaborn/references/function_reference.md +770 -0
- package/skills/seaborn/references/objects_interface.md +964 -0
- package/skills/semantic-scholar/SKILL.md +123 -0
- package/skills/session-log/SKILL.md +10 -0
- package/skills/session-search/SKILL.md +26 -0
- package/skills/setup/SKILL.md +216 -0
- package/skills/shap/SKILL.md +564 -0
- package/skills/shap/references/explainers.md +339 -0
- package/skills/shap/references/plots.md +507 -0
- package/skills/shap/references/theory.md +449 -0
- package/skills/shap/references/workflows.md +605 -0
- package/skills/simpy/SKILL.md +427 -0
- package/skills/simpy/references/events.md +374 -0
- package/skills/simpy/references/monitoring.md +475 -0
- package/skills/simpy/references/process-interaction.md +424 -0
- package/skills/simpy/references/real-time.md +395 -0
- package/skills/simpy/references/resources.md +275 -0
- package/skills/simpy/scripts/basic_simulation_template.py +193 -0
- package/skills/simpy/scripts/resource_monitor.py +345 -0
- package/skills/source-comparison/SKILL.md +12 -0
- package/skills/stable-baselines3/SKILL.md +297 -0
- package/skills/stable-baselines3/references/algorithms.md +333 -0
- package/skills/stable-baselines3/references/callbacks.md +556 -0
- package/skills/stable-baselines3/references/custom_environments.md +526 -0
- package/skills/stable-baselines3/references/vectorized_envs.md +568 -0
- package/skills/stable-baselines3/scripts/custom_env_template.py +314 -0
- package/skills/stable-baselines3/scripts/evaluate_agent.py +245 -0
- package/skills/stable-baselines3/scripts/train_rl_agent.py +165 -0
- package/skills/statistical-analysis/SKILL.md +630 -0
- package/skills/statistical-analysis/references/assumptions_and_diagnostics.md +369 -0
- package/skills/statistical-analysis/references/bayesian_statistics.md +661 -0
- package/skills/statistical-analysis/references/effect_sizes_and_power.md +581 -0
- package/skills/statistical-analysis/references/reporting_standards.md +469 -0
- package/skills/statistical-analysis/references/test_selection_guide.md +129 -0
- package/skills/statistical-analysis/scripts/assumption_checks.py +539 -0
- package/skills/statsmodels/SKILL.md +612 -0
- package/skills/statsmodels/references/discrete_choice.md +669 -0
- package/skills/statsmodels/references/glm.md +619 -0
- package/skills/statsmodels/references/linear_models.md +447 -0
- package/skills/statsmodels/references/stats_diagnostics.md +859 -0
- package/skills/statsmodels/references/time_series.md +716 -0
- package/skills/string-database/SKILL.md +532 -0
- package/skills/string-database/references/string_reference.md +455 -0
- package/skills/string-database/scripts/string_api.py +369 -0
- package/skills/sympy/SKILL.md +498 -0
- package/skills/sympy/references/advanced-topics.md +635 -0
- package/skills/sympy/references/code-generation-printing.md +599 -0
- package/skills/sympy/references/core-capabilities.md +348 -0
- package/skills/sympy/references/matrices-linear-algebra.md +526 -0
- package/skills/sympy/references/physics-mechanics.md +592 -0
- package/skills/tiledbvcf/SKILL.md +459 -0
- package/skills/timesfm-forecasting/SKILL.md +785 -0
- package/skills/timesfm-forecasting/examples/anomaly-detection/detect_anomalies.py +524 -0
- package/skills/timesfm-forecasting/examples/anomaly-detection/output/anomaly_detection.json +448 -0
- package/skills/timesfm-forecasting/examples/anomaly-detection/output/anomaly_detection.png +0 -0
- package/skills/timesfm-forecasting/examples/covariates-forecasting/demo_covariates.py +568 -0
- package/skills/timesfm-forecasting/examples/covariates-forecasting/output/covariates_data.png +0 -0
- package/skills/timesfm-forecasting/examples/covariates-forecasting/output/covariates_metadata.json +59 -0
- package/skills/timesfm-forecasting/examples/covariates-forecasting/output/sales_with_covariates.csv +109 -0
- package/skills/timesfm-forecasting/examples/global-temperature/README.md +178 -0
- package/skills/timesfm-forecasting/examples/global-temperature/generate_animation_data.py +147 -0
- package/skills/timesfm-forecasting/examples/global-temperature/generate_gif.py +248 -0
- package/skills/timesfm-forecasting/examples/global-temperature/generate_html.py +544 -0
- package/skills/timesfm-forecasting/examples/global-temperature/output/animation_data.json +5441 -0
- package/skills/timesfm-forecasting/examples/global-temperature/output/forecast_animation.gif +0 -0
- package/skills/timesfm-forecasting/examples/global-temperature/output/forecast_output.csv +13 -0
- package/skills/timesfm-forecasting/examples/global-temperature/output/forecast_output.json +188 -0
- package/skills/timesfm-forecasting/examples/global-temperature/output/forecast_visualization.png +0 -0
- package/skills/timesfm-forecasting/examples/global-temperature/output/interactive_forecast.html +5939 -0
- package/skills/timesfm-forecasting/examples/global-temperature/run_example.sh +53 -0
- package/skills/timesfm-forecasting/examples/global-temperature/run_forecast.py +167 -0
- package/skills/timesfm-forecasting/examples/global-temperature/temperature_anomaly.csv +37 -0
- package/skills/timesfm-forecasting/examples/global-temperature/visualize_forecast.py +123 -0
- package/skills/timesfm-forecasting/references/api_reference.md +231 -0
- package/skills/timesfm-forecasting/references/data_preparation.md +272 -0
- package/skills/timesfm-forecasting/references/system_requirements.md +201 -0
- package/skills/timesfm-forecasting/scripts/check_system.py +520 -0
- package/skills/timesfm-forecasting/scripts/forecast_csv.py +269 -0
- package/skills/torch-geometric/SKILL.md +674 -0
- package/skills/torch-geometric/references/datasets_reference.md +574 -0
- package/skills/torch-geometric/references/layers_reference.md +485 -0
- package/skills/torch-geometric/references/transforms_reference.md +679 -0
- package/skills/torch-geometric/scripts/benchmark_model.py +309 -0
- package/skills/torch-geometric/scripts/create_gnn_template.py +529 -0
- package/skills/torch-geometric/scripts/visualize_graph.py +313 -0
- package/skills/torchdrug/SKILL.md +448 -0
- package/skills/torchdrug/references/core_concepts.md +565 -0
- package/skills/torchdrug/references/datasets.md +380 -0
- package/skills/torchdrug/references/knowledge_graphs.md +320 -0
- package/skills/torchdrug/references/models_architectures.md +541 -0
- package/skills/torchdrug/references/molecular_generation.md +352 -0
- package/skills/torchdrug/references/molecular_property_prediction.md +169 -0
- package/skills/torchdrug/references/protein_modeling.md +272 -0
- package/skills/torchdrug/references/retrosynthesis.md +436 -0
- package/skills/transformers/SKILL.md +162 -0
- package/skills/transformers/references/generation.md +467 -0
- package/skills/transformers/references/models.md +361 -0
- package/skills/transformers/references/pipelines.md +335 -0
- package/skills/transformers/references/tokenizers.md +447 -0
- package/skills/transformers/references/training.md +500 -0
- package/skills/treatment-plans/SKILL.md +1580 -0
- package/skills/treatment-plans/assets/STYLING_QUICK_REFERENCE.md +185 -0
- package/skills/treatment-plans/assets/chronic_disease_management_plan.tex +665 -0
- package/skills/treatment-plans/assets/general_medical_treatment_plan.tex +547 -0
- package/skills/treatment-plans/assets/medical_treatment_plan.sty +222 -0
- package/skills/treatment-plans/assets/mental_health_treatment_plan.tex +774 -0
- package/skills/treatment-plans/assets/one_page_treatment_plan.tex +193 -0
- package/skills/treatment-plans/assets/pain_management_plan.tex +799 -0
- package/skills/treatment-plans/assets/perioperative_care_plan.tex +753 -0
- package/skills/treatment-plans/assets/quality_checklist.md +471 -0
- package/skills/treatment-plans/assets/rehabilitation_treatment_plan.tex +756 -0
- package/skills/treatment-plans/references/README.md +488 -0
- package/skills/treatment-plans/references/goal_setting_frameworks.md +411 -0
- package/skills/treatment-plans/references/intervention_guidelines.md +507 -0
- package/skills/treatment-plans/references/regulatory_compliance.md +476 -0
- package/skills/treatment-plans/references/specialty_specific_guidelines.md +655 -0
- package/skills/treatment-plans/references/treatment_plan_standards.md +485 -0
- package/skills/treatment-plans/scripts/check_completeness.py +318 -0
- package/skills/treatment-plans/scripts/generate_template.py +244 -0
- package/skills/treatment-plans/scripts/timeline_generator.py +369 -0
- package/skills/treatment-plans/scripts/validate_treatment_plan.py +367 -0
- package/skills/umap-learn/SKILL.md +477 -0
- package/skills/umap-learn/references/api_reference.md +532 -0
- package/skills/uniprot-database/SKILL.md +193 -0
- package/skills/uniprot-database/references/api_examples.md +413 -0
- package/skills/uniprot-database/references/api_fields.md +275 -0
- package/skills/uniprot-database/references/id_mapping_databases.md +285 -0
- package/skills/uniprot-database/references/query_syntax.md +256 -0
- package/skills/uniprot-database/scripts/uniprot_client.py +341 -0
- package/skills/usfiscaldata/SKILL.md +163 -0
- package/skills/usfiscaldata/references/api-basics.md +86 -0
- package/skills/usfiscaldata/references/datasets-debt.md +163 -0
- package/skills/usfiscaldata/references/datasets-fiscal.md +196 -0
- package/skills/usfiscaldata/references/datasets-interest-rates.md +182 -0
- package/skills/usfiscaldata/references/datasets-securities.md +216 -0
- package/skills/usfiscaldata/references/examples.md +258 -0
- package/skills/usfiscaldata/references/parameters.md +155 -0
- package/skills/usfiscaldata/references/response-format.md +176 -0
- package/skills/uspto-database/SKILL.md +605 -0
- package/skills/uspto-database/references/additional_apis.md +394 -0
- package/skills/uspto-database/references/patentsearch_api.md +266 -0
- package/skills/uspto-database/references/peds_api.md +212 -0
- package/skills/uspto-database/references/trademark_api.md +358 -0
- package/skills/uspto-database/scripts/patent_search.py +290 -0
- package/skills/uspto-database/scripts/peds_client.py +285 -0
- package/skills/uspto-database/scripts/trademark_client.py +311 -0
- package/skills/vaex/SKILL.md +180 -0
- package/skills/vaex/references/core_dataframes.md +367 -0
- package/skills/vaex/references/data_processing.md +555 -0
- package/skills/vaex/references/io_operations.md +703 -0
- package/skills/vaex/references/machine_learning.md +728 -0
- package/skills/vaex/references/performance.md +571 -0
- package/skills/vaex/references/visualization.md +613 -0
- package/skills/venue-templates/SKILL.md +688 -0
- package/skills/venue-templates/assets/examples/cell_summary_example.md +247 -0
- package/skills/venue-templates/assets/examples/medical_structured_abstract.md +313 -0
- package/skills/venue-templates/assets/examples/nature_abstract_examples.md +213 -0
- package/skills/venue-templates/assets/examples/neurips_introduction_example.md +245 -0
- package/skills/venue-templates/assets/grants/nih_specific_aims.tex +235 -0
- package/skills/venue-templates/assets/grants/nsf_proposal_template.tex +375 -0
- package/skills/venue-templates/assets/journals/nature_article.tex +171 -0
- package/skills/venue-templates/assets/journals/neurips_article.tex +283 -0
- package/skills/venue-templates/assets/journals/plos_one.tex +317 -0
- package/skills/venue-templates/assets/posters/beamerposter_academic.tex +311 -0
- package/skills/venue-templates/references/cell_press_style.md +483 -0
- package/skills/venue-templates/references/conferences_formatting.md +564 -0
- package/skills/venue-templates/references/cs_conference_style.md +463 -0
- package/skills/venue-templates/references/grants_requirements.md +787 -0
- package/skills/venue-templates/references/journals_formatting.md +486 -0
- package/skills/venue-templates/references/medical_journal_styles.md +535 -0
- package/skills/venue-templates/references/ml_conference_style.md +556 -0
- package/skills/venue-templates/references/nature_science_style.md +405 -0
- package/skills/venue-templates/references/posters_guidelines.md +628 -0
- package/skills/venue-templates/references/reviewer_expectations.md +417 -0
- package/skills/venue-templates/references/venue_writing_styles.md +321 -0
- package/skills/venue-templates/scripts/customize_template.py +206 -0
- package/skills/venue-templates/scripts/query_template.py +260 -0
- package/skills/venue-templates/scripts/validate_format.py +255 -0
- package/skills/watch/SKILL.md +12 -0
- package/skills/what-if-oracle/SKILL.md +168 -0
- package/skills/what-if-oracle/references/scenario-templates.md +137 -0
- package/skills/writing/SKILL.md +414 -0
- package/skills/xlsx/LICENSE.txt +30 -0
- package/skills/xlsx/SKILL.md +292 -0
- package/skills/xlsx/scripts/office/helpers/__init__.py +0 -0
- package/skills/xlsx/scripts/office/helpers/merge_runs.py +199 -0
- package/skills/xlsx/scripts/office/helpers/simplify_redlines.py +197 -0
- package/skills/xlsx/scripts/office/pack.py +159 -0
- package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
- package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
- package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
- package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
- package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
- package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
- package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
- package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
- package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
- package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
- package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
- package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
- package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
- package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
- package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
- package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
- package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
- package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
- package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
- package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
- package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
- package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
- package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
- package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
- package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
- package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
- package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
- package/skills/xlsx/scripts/office/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
- package/skills/xlsx/scripts/office/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
- package/skills/xlsx/scripts/office/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
- package/skills/xlsx/scripts/office/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
- package/skills/xlsx/scripts/office/schemas/mce/mc.xsd +75 -0
- package/skills/xlsx/scripts/office/schemas/microsoft/wml-2010.xsd +560 -0
- package/skills/xlsx/scripts/office/schemas/microsoft/wml-2012.xsd +67 -0
- package/skills/xlsx/scripts/office/schemas/microsoft/wml-2018.xsd +14 -0
- package/skills/xlsx/scripts/office/schemas/microsoft/wml-cex-2018.xsd +20 -0
- package/skills/xlsx/scripts/office/schemas/microsoft/wml-cid-2016.xsd +13 -0
- package/skills/xlsx/scripts/office/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
- package/skills/xlsx/scripts/office/schemas/microsoft/wml-symex-2015.xsd +8 -0
- package/skills/xlsx/scripts/office/soffice.py +183 -0
- package/skills/xlsx/scripts/office/unpack.py +132 -0
- package/skills/xlsx/scripts/office/validate.py +111 -0
- package/skills/xlsx/scripts/office/validators/__init__.py +15 -0
- package/skills/xlsx/scripts/office/validators/base.py +847 -0
- package/skills/xlsx/scripts/office/validators/docx.py +446 -0
- package/skills/xlsx/scripts/office/validators/pptx.py +275 -0
- package/skills/xlsx/scripts/office/validators/redlining.py +247 -0
- package/skills/xlsx/scripts/recalc.py +184 -0
- package/skills/zarr-python/SKILL.md +777 -0
- package/skills/zarr-python/references/api_reference.md +515 -0
- package/skills/zinc-database/SKILL.md +402 -0
- package/skills/zinc-database/references/api_reference.md +692 -0
|
@@ -0,0 +1,1684 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: scientific-workflows
|
|
3
|
+
description: Catalog of 325 scientific workflow procedures across 22 disciplines. Read this skill when the user asks for a structured scientific task — data analysis, genomics pipelines, drug discovery, clinical analysis, financial modeling, visualization, grant writing, paper writing, or any domain-specific research workflow. Match the task to a workflow below and follow its procedure with the suggested skills.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Scientific Workflow Catalog
|
|
7
|
+
|
|
8
|
+
Match the user task to the most relevant workflow below. Activate the suggested skills, then follow the prompt as your procedure.
|
|
9
|
+
|
|
10
|
+
If the task needs uploaded files, ask the user for the file path before starting.
|
|
11
|
+
|
|
12
|
+
## Astronomy and Astrophysics
|
|
13
|
+
|
|
14
|
+
### Stellar Classification
|
|
15
|
+
**Skills:** astropy, scikit-learn, scientific-visualization, matplotlib **[needs files]**
|
|
16
|
+
|
|
17
|
+
Classify stars from the uploaded dataset. (1) Extract photometric features (magnitudes, colors, indices), (2) Place stars on the HR diagram (color-magnitude or temperature-luminosity), (3) Classify spectral types (O, B, A, F, G, K, M), (4) Identify luminosity class (dwarf, giant, supergiant), (5) Detect peculiar stars (WR, carbon, subdwarfs), (6) Generate an annotated HR diagram.
|
|
18
|
+
|
|
19
|
+
### Exoplanet Detection
|
|
20
|
+
**Skills:** astropy, matplotlib, scientific-visualization, statistical-analysis **[needs files]**
|
|
21
|
+
|
|
22
|
+
Search for exoplanets in the uploaded {method} data. (1) Preprocess the light curve or RV time series (detrending, outlier removal), (2) Search for periodic signals using BLS or Lomb-Scargle, (3) Fit a transit/RV model to candidate signals, (4) Estimate planet parameters (radius, mass, orbital period, semi-major axis), (5) Assess false positive probability, (6) Generate phase-folded plots and orbital diagrams.
|
|
23
|
+
|
|
24
|
+
### Astronomical Spectral Analysis
|
|
25
|
+
**Skills:** astropy, matplotlib, scientific-visualization **[needs files]**
|
|
26
|
+
|
|
27
|
+
Analyze the uploaded astronomical spectrum ({object_type}). (1) Calibrate wavelength and flux, (2) Identify spectral lines (absorption/emission), (3) Measure line strengths (equivalent widths), (4) Determine radial velocity from Doppler shifts, (5) Estimate physical parameters ({params}), (6) Compare with template spectra and model atmospheres.
|
|
28
|
+
|
|
29
|
+
### Galaxy Morphology Classification
|
|
30
|
+
**Skills:** astropy, scikit-learn, scientific-visualization, pytorch-lightning **[needs files]**
|
|
31
|
+
|
|
32
|
+
Classify galaxy morphology from the uploaded imaging data. (1) Detect and extract galaxy images, (2) Measure structural parameters (Sérsic index, effective radius, axis ratio, position angle), (3) Classify using the Hubble sequence (elliptical, spiral, irregular), (4) Identify features (bars, rings, tidal tails, mergers), (5) Compare with catalog classifications, (6) Generate a morphology summary with annotated images.
|
|
33
|
+
|
|
34
|
+
### Orbital Mechanics Calculation
|
|
35
|
+
**Skills:** astropy, sympy, matplotlib, scientific-visualization
|
|
36
|
+
|
|
37
|
+
Calculate orbital mechanics for: {mission}. (1) Define the initial and target orbits (a, e, i, Ω, ω, ν), (2) Compute the transfer trajectory ({transfer_type}), (3) Calculate delta-v requirements, (4) Determine flight time and launch windows, (5) Analyze gravitational assists if applicable, (6) Visualize the trajectory in 3D. Report total delta-v budget.
|
|
38
|
+
|
|
39
|
+
### Light Curve Analysis
|
|
40
|
+
**Skills:** astropy, matplotlib, scientific-visualization, statistical-analysis **[needs files]**
|
|
41
|
+
|
|
42
|
+
Analyze the uploaded light curve of {object}. (1) Remove systematic trends (detrending), (2) Compute periodogram (Lomb-Scargle), (3) Determine the period and phase-fold the data, (4) Classify the variability type: {var_type}, (5) Fit a physical model (eclipsing binary, pulsation, rotation), (6) Extract physical parameters from the best-fit model.
|
|
43
|
+
|
|
44
|
+
### Radio Astronomy Analysis
|
|
45
|
+
**Skills:** astropy, matplotlib, scientific-visualization **[needs files]**
|
|
46
|
+
|
|
47
|
+
Analyze the uploaded radio astronomy data ({observation_type}). (1) Calibrate and flag RFI, (2) Image the data (if interferometric: CLEAN deconvolution), (3) Measure source properties (flux density, position, size), (4) Construct the spectral energy distribution, (5) Identify spectral lines if present ({lines}), (6) Generate publication-quality radio maps and spectra.
|
|
48
|
+
|
|
49
|
+
### Gravitational Lensing Analysis
|
|
50
|
+
**Skills:** astropy, matplotlib, scientific-visualization, sympy **[needs files]**
|
|
51
|
+
|
|
52
|
+
Analyze gravitational lensing in the uploaded data. (1) Identify lensed features (arcs, multiple images, distortions), (2) Model the mass distribution of the lens ({lens_type}), (3) Reconstruct the source morphology, (4) Estimate the lens mass and mass-to-light ratio, (5) Constrain dark matter distribution, (6) Visualize the lensing geometry and mass model.
|
|
53
|
+
|
|
54
|
+
### Dark Matter Constraints
|
|
55
|
+
**Skills:** astropy, pymc, matplotlib, scientific-visualization **[needs files]**
|
|
56
|
+
|
|
57
|
+
Derive dark matter constraints from the uploaded data ({data_type}). (1) Fit dark matter halo models ({profile}) to the data, (2) Compare with baryon-only predictions, (3) Estimate dark matter mass and concentration, (4) Place upper limits on dark matter cross-section or decay rate, (5) Compare with existing constraints from other experiments, (6) Visualize exclusion limits in parameter space.
|
|
58
|
+
|
|
59
|
+
### Solar Activity Analysis
|
|
60
|
+
**Skills:** astropy, matplotlib, scientific-visualization, statistical-analysis **[needs files]**
|
|
61
|
+
|
|
62
|
+
Analyze solar activity from the uploaded data. (1) Identify and catalog solar events (flares: {flare_class}, CMEs, sunspots), (2) Analyze the solar cycle phase, (3) Compute flare frequency-energy distributions, (4) Analyze geomagnetic indices (Kp, Dst) correlation with solar events, (5) Assess space weather impacts, (6) Generate a solar activity summary dashboard.
|
|
63
|
+
|
|
64
|
+
### Cosmic Ray Analysis
|
|
65
|
+
**Skills:** astropy, matplotlib, scientific-visualization, statistical-analysis **[needs files]**
|
|
66
|
+
|
|
67
|
+
Analyze the uploaded cosmic ray data. (1) Reconstruct primary particle energy and direction, (2) Determine chemical composition from shower observables, (3) Compute energy spectrum and compare with known models, (4) Search for anisotropy in arrival directions, (5) Analyze temporal variations and correlation with solar activity, (6) Compare with theoretical predictions and other experiments.
|
|
68
|
+
|
|
69
|
+
## Cell Biology and Single-Cell
|
|
70
|
+
|
|
71
|
+
### scRNA-seq Clustering
|
|
72
|
+
**Skills:** scanpy, anndata, scientific-visualization, umap-learn **[needs files]**
|
|
73
|
+
|
|
74
|
+
Perform clustering analysis on the uploaded scRNA-seq data. (1) Apply Leiden/Louvain clustering at multiple resolutions, (2) Evaluate cluster stability and optimal resolution, (3) Identify marker genes per cluster (Wilcoxon rank-sum test), (4) Annotate clusters using {reference} markers, (5) Visualize on UMAP with marker expression, (6) Report cluster proportions and key distinguishing features.
|
|
75
|
+
|
|
76
|
+
### Cell Type Annotation
|
|
77
|
+
**Skills:** scvi-tools, scanpy, cellxgene-census, anndata **[needs files]**
|
|
78
|
+
|
|
79
|
+
Annotate cell types in the uploaded scRNA-seq dataset. (1) Use automated annotation tools (scvi-tools, CellTypist) against reference atlases, (2) Validate with known marker genes for {tissue}, (3) Resolve ambiguous annotations using subclustering, (4) Generate annotation confidence scores, (5) Visualize annotated UMAP and dotplots of markers, (6) Report cell type proportions.
|
|
80
|
+
|
|
81
|
+
### Trajectory / Pseudotime Analysis
|
|
82
|
+
**Skills:** scanpy, scvelo, scientific-visualization, anndata **[needs files]**
|
|
83
|
+
|
|
84
|
+
Perform trajectory analysis on the uploaded scRNA-seq data. (1) Identify root cell population based on {root}, (2) Compute diffusion pseudotime or PAGA connectivity, (3) Order cells along developmental trajectories, (4) Identify genes that change along pseudotime (trajectory-associated genes), (5) Detect branch points and fate decisions, (6) Visualize trajectory on UMAP and gene expression trends along pseudotime.
|
|
85
|
+
|
|
86
|
+
### Flow Cytometry Analysis
|
|
87
|
+
**Skills:** flowio, scientific-visualization, statistical-analysis, umap-learn **[needs files]**
|
|
88
|
+
|
|
89
|
+
Analyze the uploaded flow cytometry data (FCS files). (1) Compensation and quality control, (2) Automatic gating or reproduce manual gating strategy: {gating}, (3) Dimensionality reduction (UMAP) of marker expression, (4) FlowSOM or Phenograph clustering, (5) Quantify cell population frequencies, (6) Compare populations between {comparison}. Generate publication-quality dot plots and histograms.
|
|
90
|
+
|
|
91
|
+
### Cell-Cell Communication
|
|
92
|
+
**Skills:** scanpy, anndata, networkx, scientific-visualization **[needs files]**
|
|
93
|
+
|
|
94
|
+
Infer cell-cell communication networks from the uploaded scRNA-seq data. (1) Identify ligand-receptor pairs between cell types, (2) Score interaction strength using CellChat or similar, (3) Identify dominant signaling pathways, (4) Detect outgoing and incoming signals per cell type, (5) Visualize communication networks (chord diagrams, dot plots), (6) Compare signaling between {comparison} if multiple conditions.
|
|
95
|
+
|
|
96
|
+
### Multi-Omics Integration
|
|
97
|
+
**Skills:** scvi-tools, anndata, scanpy, scientific-visualization **[needs files]**
|
|
98
|
+
|
|
99
|
+
Integrate the uploaded multi-omics datasets ({modalities}). (1) Harmonize features across modalities, (2) Apply integration methods (MOFA+, WNN, or scVI multi-modal), (3) Generate a joint embedding, (4) Identify features driving cross-modality variation, (5) Discover multi-omic cell states or subtypes, (6) Validate with modality-specific markers.
|
|
100
|
+
|
|
101
|
+
### Cell Cycle Analysis
|
|
102
|
+
**Skills:** scanpy, anndata, scientific-visualization **[needs files]**
|
|
103
|
+
|
|
104
|
+
Perform cell cycle analysis on the uploaded scRNA-seq data. (1) Score G1, S, and G2M phases using standard gene sets, (2) Visualize cell cycle distribution across clusters, (3) Test whether cell cycle drives clustering, (4) Regress out cell cycle effects if confounding, (5) Compare cell cycle distribution between {comparison}, (6) Identify cell cycle-regulated genes specific to each cell type.
|
|
105
|
+
|
|
106
|
+
### Perturbation / CRISPR Screen Analysis
|
|
107
|
+
**Skills:** scanpy, anndata, depmap, scientific-visualization **[needs files]**
|
|
108
|
+
|
|
109
|
+
Analyze the uploaded perturbation screen data ({screen_type}). (1) QC: assess guide RNA coverage and cell numbers per perturbation, (2) Identify differentially expressed genes per perturbation vs non-targeting controls, (3) Score perturbation effects on gene programs, (4) Cluster perturbations by transcriptional similarity, (5) Identify genetic interactions or epistasis, (6) Prioritize hits for validation.
|
|
110
|
+
|
|
111
|
+
### Immune Cell Profiling
|
|
112
|
+
**Skills:** scanpy, anndata, scientific-visualization, statistical-analysis **[needs files]**
|
|
113
|
+
|
|
114
|
+
Perform immune cell profiling from the uploaded data ({data_type}). (1) Identify major immune populations (T cells, B cells, NK, myeloid, DCs), (2) Subtype each population (CD4/CD8, naive/memory/effector), (3) Score activation, exhaustion, and cytotoxicity signatures, (4) Quantify clonal expansion from TCR/BCR if available, (5) Compare immune composition between {comparison}, (6) Generate a comprehensive immune landscape report.
|
|
115
|
+
|
|
116
|
+
### Lineage Tracing Analysis
|
|
117
|
+
**Skills:** scanpy, anndata, etetoolkit, scientific-visualization **[needs files]**
|
|
118
|
+
|
|
119
|
+
Analyze lineage tracing data from the uploaded dataset. (1) Process barcode or mutation data for lineage reconstruction, (2) Build lineage trees using neighbor-joining or Bayesian methods, (3) Map cell types onto the lineage tree, (4) Identify lineage-biased progenitors, (5) Quantify fate probabilities for each progenitor class, (6) Visualize lineage trees annotated with cell types and pseudotime.
|
|
120
|
+
|
|
121
|
+
### Spatial Cell Analysis
|
|
122
|
+
**Skills:** scanpy, scientific-visualization, geopandas **[needs files]**
|
|
123
|
+
|
|
124
|
+
Analyze spatial cell organization in the uploaded data ({platform}). (1) Segment cells and quantify marker expression, (2) Classify cell types, (3) Identify spatial neighborhoods and niches, (4) Compute spatial statistics (co-localization, exclusion, clustering), (5) Detect tissue microenvironments, (6) Correlate spatial patterns with {outcome} if available.
|
|
125
|
+
|
|
126
|
+
### Metabolic Flux Analysis
|
|
127
|
+
**Skills:** cobrapy, kegg-database, scientific-visualization, matplotlib
|
|
128
|
+
|
|
129
|
+
Perform metabolic flux analysis on {organism} using constraint-based modeling. (1) Load or construct a genome-scale metabolic model (GEM), (2) Define media conditions: {media}, (3) Run flux balance analysis (FBA) to predict growth rate and fluxes, (4) Perform flux variability analysis (FVA), (5) Simulate gene knockouts and predict essential genes, (6) Visualize metabolic flux maps on pathway diagrams.
|
|
130
|
+
|
|
131
|
+
### Glycan Engineering & Analysis
|
|
132
|
+
**Skills:** glycoengineering, biopython, scientific-visualization, matplotlib **[needs files]**
|
|
133
|
+
|
|
134
|
+
Analyze glycosylation patterns from the uploaded data. (1) Identify N-linked and O-linked glycan structures, (2) Quantify glycoform distributions, (3) Map glycosylation sites on the protein, (4) Compare glycoprofiles between {comparison}, (5) Predict the impact of glycosylation on protein function and immunogenicity, (6) Suggest glycoengineering strategies to optimize the glycoprofile.
|
|
135
|
+
|
|
136
|
+
## Chemistry and Cheminformatics
|
|
137
|
+
|
|
138
|
+
### Molecular Property Prediction
|
|
139
|
+
**Skills:** rdkit, datamol, molfeat, deepchem **[needs files]**
|
|
140
|
+
|
|
141
|
+
Predict properties of the uploaded molecules (SMILES or SDF). Properties to predict: {properties}. (1) Calculate molecular descriptors (MW, LogP, TPSA, HBD/HBA, rotatable bonds), (2) Apply ML models for property prediction, (3) Assess drug-likeness (Lipinski, Veber, Ghose rules), (4) Generate a property dashboard for each molecule, (5) Flag outliers or unusual structures, (6) Export results as a table.
|
|
142
|
+
|
|
143
|
+
### Chemical Reaction Prediction
|
|
144
|
+
**Skills:** rdkit, deepchem, scientific-writing
|
|
145
|
+
|
|
146
|
+
Predict the products and conditions for the reaction: {reaction}. (1) Identify the reaction type and mechanism, (2) Predict major and minor products, (3) Estimate regioselectivity and stereoselectivity, (4) Suggest optimal reaction conditions (solvent, temperature, catalyst), (5) Predict expected yield range, (6) Flag potential side reactions or safety concerns.
|
|
147
|
+
|
|
148
|
+
### Retrosynthesis Planning
|
|
149
|
+
**Skills:** rdkit, pubchem-database, deepchem, research-lookup
|
|
150
|
+
|
|
151
|
+
Plan a retrosynthetic route to: {target}. (1) Identify strategic disconnections, (2) Propose multiple synthetic routes (3-5 routes), (3) Evaluate each route: number of steps, reagent availability, expected yields, (4) Check literature for precedent reactions, (5) Rank routes by practicality, (6) Provide a detailed forward synthesis plan for the top route with specific reagents and conditions.
|
|
152
|
+
|
|
153
|
+
### Conformer Generation & Analysis
|
|
154
|
+
**Skills:** rdkit, datamol, rowan
|
|
155
|
+
|
|
156
|
+
Generate and analyze conformers for: {molecule}. (1) Generate a diverse conformer ensemble (ETKDG or similar), (2) Optimize geometries with a force field, (3) Rank conformers by energy, (4) Analyze the conformational landscape (torsion angles, RMSD clustering), (5) Identify the global minimum and key metastable states, (6) Visualize the low-energy conformers.
|
|
157
|
+
|
|
158
|
+
### QSAR Modeling
|
|
159
|
+
**Skills:** rdkit, molfeat, deepchem, scikit-learn **[needs files]**
|
|
160
|
+
|
|
161
|
+
Build a QSAR model for {target_property} using the uploaded molecular dataset. (1) Calculate molecular descriptors and fingerprints, (2) Split data into training/test sets with scaffold splitting, (3) Train multiple models (random forest, gradient boosting, neural network), (4) Evaluate with cross-validation (R², RMSE, MAE), (5) Analyze feature importance and applicability domain, (6) Predict {target_property} for new molecules if provided.
|
|
162
|
+
|
|
163
|
+
### Chemical Space Exploration
|
|
164
|
+
**Skills:** rdkit, molfeat, umap-learn, scientific-visualization **[needs files]**
|
|
165
|
+
|
|
166
|
+
Explore the chemical space of the uploaded compound library. (1) Calculate molecular fingerprints for all compounds, (2) Reduce to 2D/3D using t-SNE and UMAP, (3) Color by {property} if available, (4) Identify clusters and outliers, (5) Compare with known drug space (DrugBank), (6) Identify underexplored regions, (7) Report diversity metrics (scaffold diversity, property coverage).
|
|
167
|
+
|
|
168
|
+
### NMR Spectral Analysis
|
|
169
|
+
**Skills:** rdkit, scientific-visualization, matplotlib **[needs files]**
|
|
170
|
+
|
|
171
|
+
Analyze the uploaded NMR spectrum ({nmr_type}) for: {compound}. (1) Identify all peaks and their chemical shifts, (2) Assign peaks to structural features, (3) Analyze multiplicity patterns (1H) or DEPT data (13C), (4) Determine connectivity from 2D experiments if provided (COSY, HSQC, HMBC), (5) Confirm or propose the molecular structure, (6) Report complete assignments table.
|
|
172
|
+
|
|
173
|
+
### Mass Spectrometry Analysis
|
|
174
|
+
**Skills:** matchms, pyopenms, scientific-visualization, rdkit **[needs files]**
|
|
175
|
+
|
|
176
|
+
Analyze the uploaded mass spectrometry data ({ms_type}). (1) Identify molecular ion peak and calculate molecular formula, (2) Interpret fragmentation pattern, (3) Match fragments against spectral libraries, (4) Propose structural fragments for unknown peaks, (5) Quantify target compounds if standards provided, (6) Generate annotated spectrum visualization.
|
|
177
|
+
|
|
178
|
+
### Thermodynamics Calculation
|
|
179
|
+
**Skills:** sympy, matplotlib, scientific-visualization
|
|
180
|
+
|
|
181
|
+
Calculate thermodynamic properties for: {system}. (1) Compute standard enthalpies, entropies, and Gibbs free energies, (2) Determine equilibrium constants at {temperature}, (3) Generate van't Hoff plots across temperature range, (4) Calculate reaction spontaneity and feasibility, (5) Estimate activation energy if kinetic data provided, (6) Compare with experimental values from literature.
|
|
182
|
+
|
|
183
|
+
### pKa Prediction
|
|
184
|
+
**Skills:** rdkit, datamol, medchem
|
|
185
|
+
|
|
186
|
+
Predict pKa values for: {molecule}. (1) Identify all ionizable groups, (2) Predict microscopic pKa for each site, (3) Determine the dominant protonation state at pH {ph}, (4) Generate a microspeciation diagram, (5) Compare with experimental pKa values if available, (6) Analyze the effect of pH on charge state and solubility.
|
|
187
|
+
|
|
188
|
+
### Solubility Prediction
|
|
189
|
+
**Skills:** rdkit, datamol, medchem, deepchem
|
|
190
|
+
|
|
191
|
+
Predict the aqueous solubility of: {molecules}. (1) Calculate LogS using multiple methods (ESOL, AqSolPred, group contribution), (2) Predict intrinsic and pH-dependent solubility, (3) Analyze structural features affecting solubility, (4) Suggest salt forms or co-crystal strategies to improve solubility if needed, (5) Compare with experimental data if available, (6) Report BCS classification.
|
|
192
|
+
|
|
193
|
+
### Reaction Optimization
|
|
194
|
+
**Skills:** rdkit, pymoo, scientific-visualization, statistical-analysis
|
|
195
|
+
|
|
196
|
+
Design an optimization campaign for the reaction: {reaction}. (1) Identify key variables (temperature, solvent, catalyst loading, concentration, time), (2) Design a DoE (Design of Experiments) plan — factorial or Bayesian optimization, (3) Suggest the initial screening set, (4) Define the objective function and constraints, (5) Propose an iterative optimization strategy, (6) Estimate the number of experiments needed.
|
|
197
|
+
|
|
198
|
+
### Polymer Design & Analysis
|
|
199
|
+
**Skills:** rdkit, research-lookup, scientific-writing, deepchem
|
|
200
|
+
|
|
201
|
+
Design or analyze a polymer for {application}. Target properties: {properties}. (1) Identify candidate monomer structures, (2) Predict key polymer properties (Tg, Tm, mechanical strength, solubility), (3) Evaluate sustainability and processability, (4) Compare with existing polymers in the literature, (5) Suggest synthesis routes, (6) Recommend characterization experiments.
|
|
202
|
+
|
|
203
|
+
### Catalyst Design
|
|
204
|
+
**Skills:** rdkit, research-lookup, deepchem, scientific-writing
|
|
205
|
+
|
|
206
|
+
Design a catalyst for: {reaction}. (1) Analyze the reaction mechanism and identify the rate-determining step, (2) Propose candidate catalyst scaffolds (metal-organic, enzymatic, organocatalytic), (3) Predict activity trends using descriptors, (4) Screen candidates computationally, (5) Compare with known catalysts in the literature, (6) Recommend top candidates for experimental testing.
|
|
207
|
+
|
|
208
|
+
### Chemical Safety Assessment
|
|
209
|
+
**Skills:** rdkit, pubchem-database, research-lookup
|
|
210
|
+
|
|
211
|
+
Perform a safety assessment of: {chemicals}. (1) Look up GHS classification and hazard statements, (2) Predict toxicity endpoints (LD50, LC50, mutagenicity), (3) Assess environmental fate (biodegradation, bioaccumulation), (4) Check regulatory status (REACH, TSCA), (5) Identify incompatibilities and storage requirements, (6) Generate a safety data summary.
|
|
212
|
+
|
|
213
|
+
### Metabolite Identification
|
|
214
|
+
**Skills:** matchms, hmdb-database, metabolomics-workbench-database, kegg-database **[needs files]**
|
|
215
|
+
|
|
216
|
+
Identify metabolites from the uploaded {data_type} data. (1) Process and align spectral features, (2) Match against spectral databases (HMDB, MassBank, METLIN), (3) Predict metabolite identities from accurate mass and fragmentation, (4) Score confidence levels (identified, putative, unknown), (5) Map identified metabolites to metabolic pathways, (6) Report a ranked candidate list for each feature.
|
|
217
|
+
|
|
218
|
+
### Synthetic Accessibility Score
|
|
219
|
+
**Skills:** rdkit, datamol, zinc-database, medchem **[needs files]**
|
|
220
|
+
|
|
221
|
+
Evaluate the synthetic accessibility of the uploaded molecules. (1) Calculate SA scores for each compound, (2) Identify challenging structural motifs (strained rings, stereocenters, rare functional groups), (3) Estimate the number of synthetic steps, (4) Flag commercially available building blocks, (5) Rank compounds by ease of synthesis, (6) Suggest simplifications for hard-to-synthesize compounds.
|
|
222
|
+
|
|
223
|
+
### Metabolomics Data Analysis
|
|
224
|
+
**Skills:** hmdb-database, metabolomics-workbench-database, kegg-database, scientific-visualization **[needs files]**
|
|
225
|
+
|
|
226
|
+
Analyze the uploaded metabolomics dataset ({platform}). (1) Preprocess: peak picking, alignment, normalization, (2) Quality control (QC sample analysis, batch correction), (3) Statistical analysis: PCA, PLS-DA between {comparison}, (4) Identify significant metabolites (fold change > {fc}, FDR < 0.05), (5) Pathway enrichment via KEGG and MetaboAnalyst, (6) Generate volcano plot, pathway impact plot, and metabolite heatmap.
|
|
227
|
+
|
|
228
|
+
## Clinical Research and Medicine
|
|
229
|
+
|
|
230
|
+
### Clinical Trial Analysis
|
|
231
|
+
**Skills:** statistical-analysis, scikit-survival, scientific-visualization, statsmodels **[needs files]**
|
|
232
|
+
|
|
233
|
+
Analyze the uploaded clinical trial data. (1) Describe the study population (demographics, baseline characteristics), (2) Analyze the primary endpoint: {endpoint}, (3) Perform intention-to-treat and per-protocol analyses, (4) Generate Kaplan-Meier curves for time-to-event endpoints, (5) Run subgroup analyses, (6) Report adverse events. Follow CONSORT reporting guidelines.
|
|
234
|
+
|
|
235
|
+
### Clinical Survival Analysis
|
|
236
|
+
**Skills:** scikit-survival, statistical-analysis, scientific-visualization, matplotlib **[needs files]**
|
|
237
|
+
|
|
238
|
+
Perform survival analysis on the uploaded clinical data. Outcome: {outcome}, follow-up time in {time_unit}. (1) Kaplan-Meier estimates for overall and subgroup survival, (2) Log-rank tests comparing {groups}, (3) Multivariable Cox regression adjusting for {covariates}, (4) Check proportional hazards assumption, (5) Generate forest plot of hazard ratios, (6) Report median survival and 5-year rates.
|
|
239
|
+
|
|
240
|
+
### Epidemiological Study Design
|
|
241
|
+
**Skills:** statistical-analysis, scientific-writing, research-lookup, statsmodels
|
|
242
|
+
|
|
243
|
+
Design an epidemiological study to investigate: {question}. Study type: {study_type}. (1) Define the study population and sampling strategy, (2) Specify exposure and outcome definitions, (3) Identify confounders and effect modifiers, (4) Calculate required sample size, (5) Plan the statistical analysis (OR, RR, hazard ratios), (6) Describe methods to address bias (selection, information, confounding).
|
|
244
|
+
|
|
245
|
+
### Medical Image Analysis
|
|
246
|
+
**Skills:** pydicom, pathml, imaging-data-commons, pytorch-lightning **[needs files]**
|
|
247
|
+
|
|
248
|
+
Analyze the uploaded medical images ({modality}). (1) Preprocess images (normalization, artifact removal), (2) Apply segmentation for {target_structure}, (3) Extract quantitative features (shape, texture, intensity), (4) Classify findings using ML models if applicable, (5) Generate annotated output images, (6) Report findings in standard radiological/pathological format.
|
|
249
|
+
|
|
250
|
+
### Diagnostic Test Accuracy
|
|
251
|
+
**Skills:** statistical-analysis, scikit-learn, scientific-visualization, matplotlib **[needs files]**
|
|
252
|
+
|
|
253
|
+
Evaluate the diagnostic accuracy of {test} for {condition} using the uploaded data. (1) Calculate sensitivity and specificity, (2) Compute PPV and NPV at prevalence = {prevalence}, (3) Generate ROC curve with AUC, (4) Determine optimal cutoff (Youden's index), (5) Calculate likelihood ratios, (6) Report results following STARD guidelines.
|
|
254
|
+
|
|
255
|
+
### Treatment Comparison
|
|
256
|
+
**Skills:** statistical-analysis, scikit-survival, scientific-visualization, statsmodels **[needs files]**
|
|
257
|
+
|
|
258
|
+
Compare treatment outcomes between {treatments} using the uploaded clinical data. (1) Check baseline balance between groups, (2) Analyze primary outcome with appropriate tests, (3) Adjust for confounders using {method}, (4) Perform NNT (number needed to treat) calculation, (5) Analyze secondary outcomes, (6) Run sensitivity analyses. Report effect sizes with confidence intervals.
|
|
259
|
+
|
|
260
|
+
### Clinical Risk Prediction Model
|
|
261
|
+
**Skills:** pyhealth, scikit-learn, scikit-survival, scientific-visualization **[needs files]**
|
|
262
|
+
|
|
263
|
+
Build a clinical risk prediction model for: {outcome}. (1) Select candidate predictors from the uploaded data, (2) Handle missing data (multiple imputation), (3) Fit logistic regression and ML models, (4) Internal validation with bootstrapping, (5) Assess calibration (calibration plot) and discrimination (C-statistic/AUC), (6) Create a nomogram or risk calculator. Follow TRIPOD guidelines.
|
|
264
|
+
|
|
265
|
+
### Adverse Event Analysis
|
|
266
|
+
**Skills:** statistical-analysis, clinical-reports, scientific-visualization, matplotlib **[needs files]**
|
|
267
|
+
|
|
268
|
+
Analyze adverse events from the uploaded clinical safety data. (1) Tabulate AE frequencies by system organ class and preferred term, (2) Compare AE rates between {groups} (risk difference, risk ratio), (3) Identify dose-dependent AEs, (4) Analyze time-to-onset distributions, (5) Flag serious adverse events (SAEs), (6) Generate standardized safety tables and forest plots following ICH E3 guidelines.
|
|
269
|
+
|
|
270
|
+
### Cost-Effectiveness Analysis
|
|
271
|
+
**Skills:** pymc, simpy, scientific-visualization, statistical-analysis
|
|
272
|
+
|
|
273
|
+
Perform a cost-effectiveness analysis comparing {interventions} for {condition}. (1) Define the model structure (decision tree or Markov), (2) Populate with clinical effectiveness data, (3) Assign costs from {perspective} perspective, (4) Calculate ICERs (incremental cost-effectiveness ratios), (5) Run probabilistic sensitivity analysis (1000 iterations), (6) Generate cost-effectiveness plane and acceptability curves.
|
|
274
|
+
|
|
275
|
+
### Patient Cohort Study
|
|
276
|
+
**Skills:** statistical-analysis, scikit-survival, scientific-visualization, statsmodels **[needs files]**
|
|
277
|
+
|
|
278
|
+
Analyze the uploaded patient cohort data (n={sample_size} patients). (1) Describe demographics and clinical characteristics, (2) Analyze the primary outcome: {outcome}, (3) Perform multivariable analysis adjusting for confounders, (4) Run subgroup analyses by: {subgroups}, (5) Check for interaction effects, (6) Generate a comprehensive results table (Table 1) and key figures.
|
|
279
|
+
|
|
280
|
+
### Clinical Systematic Review
|
|
281
|
+
**Skills:** pubmed-database, literature-review, statistical-analysis, scientific-writing
|
|
282
|
+
|
|
283
|
+
Conduct a systematic review on: {question}. (1) Define PICO criteria, (2) Search PubMed, Cochrane, and Embase with structured queries, (3) Screen titles/abstracts against inclusion criteria, (4) Extract data from included studies, (5) Assess risk of bias (Cochrane RoB 2.0), (6) Perform meta-analysis if appropriate, (7) Generate PRISMA flow diagram and evidence summary tables.
|
|
284
|
+
|
|
285
|
+
### Clinical Guideline Summary
|
|
286
|
+
**Skills:** research-lookup, clinical-decision-support, scientific-writing
|
|
287
|
+
|
|
288
|
+
Summarize clinical practice guidelines for: {condition}. (1) Identify current guidelines from major societies ({societies}), (2) Compare recommendations across guidelines, (3) Note the strength of evidence behind each recommendation, (4) Highlight areas of agreement and disagreement, (5) Create a quick-reference comparison table, (6) Identify gaps where evidence is lacking.
|
|
289
|
+
|
|
290
|
+
### Quality Improvement Analysis
|
|
291
|
+
**Skills:** statistical-analysis, scientific-visualization, matplotlib, clinical-reports
|
|
292
|
+
|
|
293
|
+
Analyze healthcare quality data for: {initiative}. (1) Define quality metrics and benchmarks, (2) Create control charts (SPC) to assess process stability, (3) Identify special-cause variation, (4) Perform pre/post intervention comparison, (5) Calculate process capability indices, (6) Recommend next steps for sustained improvement. Follow IHI Model for Improvement.
|
|
294
|
+
|
|
295
|
+
### Health Equity Analysis
|
|
296
|
+
**Skills:** statistical-analysis, datacommons-client, scientific-visualization, statsmodels **[needs files]**
|
|
297
|
+
|
|
298
|
+
Analyze health equity in the uploaded data. Outcome: {outcome}. (1) Stratify outcomes by {demographics}, (2) Calculate absolute and relative disparities, (3) Apply decomposition methods to identify drivers, (4) Adjust for socioeconomic confounders, (5) Map geographic variations if data available, (6) Recommend targeted interventions to reduce disparities.
|
|
299
|
+
|
|
300
|
+
### EHR Data Analysis
|
|
301
|
+
**Skills:** pyhealth, polars, statistical-analysis, scikit-learn **[needs files]**
|
|
302
|
+
|
|
303
|
+
Analyze the uploaded EHR dataset. (1) Clean and harmonize clinical codes (ICD, CPT, LOINC), (2) Define the study cohort using inclusion criteria: {criteria}, (3) Extract clinical features (diagnoses, labs, medications, vitals), (4) Handle temporal data and create time windows, (5) Analyze: {analysis_goal}, (6) Address missingness and potential biases in EHR data.
|
|
304
|
+
|
|
305
|
+
### Longitudinal Data Analysis
|
|
306
|
+
**Skills:** statsmodels, statistical-analysis, scientific-visualization, matplotlib **[needs files]**
|
|
307
|
+
|
|
308
|
+
Analyze the uploaded longitudinal data. Outcome: {outcome}, measured at {timepoints} timepoints. (1) Visualize individual trajectories and group means, (2) Fit mixed-effects models (random intercepts and slopes), (3) Test group × time interactions for {groups}, (4) Handle missing data (MAR assumption, multiple imputation), (5) Check model assumptions, (6) Report trajectory plots and model estimates.
|
|
309
|
+
|
|
310
|
+
### Population Health Assessment
|
|
311
|
+
**Skills:** datacommons-client, statistical-analysis, scientific-visualization, research-lookup
|
|
312
|
+
|
|
313
|
+
Conduct a population health assessment for: {population}. (1) Compile demographic and socioeconomic profile, (2) Analyze leading causes of morbidity and mortality, (3) Assess healthcare access and utilization, (4) Identify health risk factors and social determinants, (5) Compare with state/national benchmarks, (6) Prioritize health needs and recommend interventions.
|
|
314
|
+
|
|
315
|
+
### Case-Control Analysis
|
|
316
|
+
**Skills:** statistical-analysis, statsmodels, scientific-visualization **[needs files]**
|
|
317
|
+
|
|
318
|
+
Analyze the uploaded case-control study data. Cases: {cases}, Controls: {controls}. (1) Compare baseline characteristics, (2) Calculate crude and adjusted odds ratios, (3) Perform conditional logistic regression for matched designs, (4) Check for confounding and effect modification, (5) Assess dose-response if applicable, (6) Report with forest plots and summary tables.
|
|
319
|
+
|
|
320
|
+
### Digital Pathology Analysis
|
|
321
|
+
**Skills:** pathml, histolab, pytorch-lightning, scientific-visualization **[needs files]**
|
|
322
|
+
|
|
323
|
+
Analyze the uploaded whole-slide image ({stain}). (1) Tissue detection and artifact removal, (2) Tile extraction at {magnification}x magnification, (3) Cell segmentation and classification, (4) Quantify: {metrics}, (5) Spatial analysis of cell distributions, (6) Generate heatmaps overlaid on the tissue. Report findings in standard pathology format.
|
|
324
|
+
|
|
325
|
+
## Data Analysis
|
|
326
|
+
|
|
327
|
+
### Explore My Data
|
|
328
|
+
**Skills:** exploratory-data-analysis, scientific-visualization, polars **[needs files]**
|
|
329
|
+
|
|
330
|
+
Perform exploratory data analysis on the uploaded dataset. Summarize the structure (rows, columns, types), check for missing values, compute descriptive statistics, visualize distributions of key variables, examine correlations, and flag any anomalies or patterns. Generate clear summary visualizations.
|
|
331
|
+
|
|
332
|
+
### Statistical Analysis
|
|
333
|
+
**Skills:** statistical-analysis, statsmodels, scikit-learn **[needs files]**
|
|
334
|
+
|
|
335
|
+
Run appropriate statistical analyses on the uploaded data. For each analysis: (1) state the hypothesis, (2) check test assumptions, (3) run the appropriate test, (4) report test statistics, p-values, confidence intervals, and effect sizes, (5) interpret the results. {instructions}
|
|
336
|
+
|
|
337
|
+
### Reproduce an Analysis
|
|
338
|
+
**Skills:** statistical-analysis, scientific-critical-thinking **[needs files]**
|
|
339
|
+
|
|
340
|
+
Reproduce the analysis described in the uploaded paper using the provided data. Follow the methods section step by step, implement the same statistical tests and procedures, and compare your results with the reported findings. Document any discrepancies.
|
|
341
|
+
|
|
342
|
+
### Clean & Transform Data
|
|
343
|
+
**Skills:** polars, exploratory-data-analysis **[needs files]**
|
|
344
|
+
|
|
345
|
+
Clean and transform the uploaded dataset into an analysis-ready format. Handle missing values, fix data types, remove duplicates, standardize column names, deal with outliers, and apply any necessary transformations. Document every step taken and save the cleaned dataset.
|
|
346
|
+
|
|
347
|
+
### Build a Predictive Model
|
|
348
|
+
**Skills:** scikit-learn, shap, exploratory-data-analysis **[needs files]**
|
|
349
|
+
|
|
350
|
+
Build a predictive model on the uploaded data. Target variable: {target}. (1) Explore and preprocess the data, (2) Select and train appropriate models, (3) Evaluate with cross-validation, (4) Report metrics (accuracy, AUC, RMSE as appropriate), (5) Interpret feature importance, (6) Save the best model.
|
|
351
|
+
|
|
352
|
+
### Time Series Analysis
|
|
353
|
+
**Skills:** timesfm-forecasting, statsmodels, scientific-visualization, matplotlib **[needs files]**
|
|
354
|
+
|
|
355
|
+
Analyze the uploaded time series data. (1) Visualize the series and check for trends, seasonality, and stationarity, (2) Decompose into trend/seasonal/residual components, (3) Fit appropriate models (ARIMA, Prophet, or ML-based), (4) Generate forecasts for {horizon}, (5) Detect anomalies, (6) Report confidence intervals.
|
|
356
|
+
|
|
357
|
+
### Survival Analysis
|
|
358
|
+
**Skills:** scikit-survival, statistical-analysis, scientific-visualization, statsmodels **[needs files]**
|
|
359
|
+
|
|
360
|
+
Perform survival analysis on the uploaded data. (1) Generate Kaplan-Meier curves for key groups, (2) Run log-rank tests for group comparisons, (3) Fit a Cox proportional hazards model with covariates: {covariates}, (4) Check proportional hazards assumption, (5) Report hazard ratios with 95% CI, (6) Create forest plots.
|
|
361
|
+
|
|
362
|
+
### Meta-Analysis
|
|
363
|
+
**Skills:** statistical-analysis, statsmodels, scientific-visualization, matplotlib **[needs files]**
|
|
364
|
+
|
|
365
|
+
Conduct a meta-analysis using the uploaded study data. (1) Extract or verify effect sizes and standard errors, (2) Run fixed-effects and random-effects models, (3) Assess heterogeneity (I², Q statistic, tau²), (4) Generate a forest plot, (5) Create a funnel plot to assess publication bias, (6) Run sensitivity and subgroup analyses.
|
|
366
|
+
|
|
367
|
+
### Power Analysis
|
|
368
|
+
**Skills:** statistical-analysis, statsmodels, scientific-visualization
|
|
369
|
+
|
|
370
|
+
Perform a power analysis for a {study_design}. Parameters: expected effect size = {effect_size}, significance level = {alpha}. (1) Calculate the required sample size for 80% and 90% power, (2) Generate power curves across a range of effect sizes, (3) Account for multiple comparisons if applicable, (4) Provide recommendations for the study design.
|
|
371
|
+
|
|
372
|
+
### Bayesian Analysis
|
|
373
|
+
**Skills:** pymc, statistical-analysis, scientific-visualization, matplotlib **[needs files]**
|
|
374
|
+
|
|
375
|
+
Perform Bayesian analysis on the uploaded data. (1) Define the model and priors for {parameters}, (2) Run MCMC sampling (NUTS/HMC), (3) Check convergence (R-hat, trace plots, ESS), (4) Report posterior distributions and 95% credible intervals, (5) Compute Bayes factors if comparing models, (6) Generate posterior predictive checks.
|
|
376
|
+
|
|
377
|
+
### Dimensionality Reduction
|
|
378
|
+
**Skills:** umap-learn, scikit-learn, scientific-visualization, matplotlib **[needs files]**
|
|
379
|
+
|
|
380
|
+
Apply dimensionality reduction to the uploaded high-dimensional dataset. (1) Run PCA and report variance explained, (2) Apply t-SNE and UMAP with optimized parameters, (3) Color points by {label} if available, (4) Compare methods side by side, (5) Identify clusters or outlier groups, (6) Save reduced coordinates.
|
|
381
|
+
|
|
382
|
+
### Clustering Analysis
|
|
383
|
+
**Skills:** scikit-learn, umap-learn, scientific-visualization, seaborn **[needs files]**
|
|
384
|
+
|
|
385
|
+
Perform clustering analysis on the uploaded dataset. (1) Preprocess and scale features, (2) Determine optimal cluster count (elbow method, silhouette, gap statistic), (3) Apply k-means, hierarchical, and DBSCAN, (4) Compare results and select the best method, (5) Characterize each cluster by key features, (6) Visualize with UMAP/t-SNE.
|
|
386
|
+
|
|
387
|
+
### Regression Analysis
|
|
388
|
+
**Skills:** statsmodels, statistical-analysis, scientific-visualization **[needs files]**
|
|
389
|
+
|
|
390
|
+
Fit a {regression_type} regression model on the uploaded data. Outcome: {outcome}, predictors: {predictors}. (1) Check assumptions (linearity, normality, homoscedasticity, multicollinearity), (2) Fit the model, (3) Report coefficients with CIs and p-values, (4) Assess model fit (R², AIC, BIC), (5) Generate diagnostic plots, (6) Interpret key findings.
|
|
391
|
+
|
|
392
|
+
### ANOVA / Group Comparisons
|
|
393
|
+
**Skills:** statistical-analysis, statsmodels, scientific-visualization, matplotlib **[needs files]**
|
|
394
|
+
|
|
395
|
+
Perform ANOVA on the uploaded data. Factor(s): {factors}, outcome: {outcome}. (1) Check assumptions (normality, homogeneity of variance), (2) Run the appropriate ANOVA (one-way, two-way, repeated measures), (3) Report F-statistics and p-values, (4) Run post-hoc pairwise comparisons with correction, (5) Calculate effect sizes (eta²), (6) Create bar/box plots with significance markers.
|
|
396
|
+
|
|
397
|
+
### Correlation Network
|
|
398
|
+
**Skills:** networkx, scientific-visualization, statsmodels, plotly **[needs files]**
|
|
399
|
+
|
|
400
|
+
Build a correlation network from the uploaded dataset. (1) Calculate pairwise correlations (Pearson, Spearman, or partial), (2) Apply significance threshold (p < {threshold}), (3) Construct a network graph, (4) Identify hubs and communities, (5) Visualize with node sizes proportional to connectivity, (6) Report key network statistics (density, modularity, clustering coefficient).
|
|
401
|
+
|
|
402
|
+
## Drug Discovery and Pharmacology
|
|
403
|
+
|
|
404
|
+
### Drug Target Identification
|
|
405
|
+
**Skills:** opentargets-database, gene-database, drugbank-database, primekg
|
|
406
|
+
|
|
407
|
+
Identify potential drug targets for: {disease}. (1) Query disease-gene associations from OpenTargets, OMIM, and GWAS catalog, (2) Prioritize targets by genetic evidence, expression, and druggability, (3) Check existing drugs against each target, (4) Assess target tractability (structure availability, assayability), (5) Evaluate safety liabilities (tissue expression, mouse KO phenotypes), (6) Recommend top 5-10 targets with rationale.
|
|
408
|
+
|
|
409
|
+
### Virtual Screening
|
|
410
|
+
**Skills:** diffdock, rdkit, zinc-database, medchem **[needs files]**
|
|
411
|
+
|
|
412
|
+
Perform virtual screening against {target}. (1) Prepare the target structure (PDB: {pdb_id}), (2) Define the binding site, (3) Screen the uploaded compound library or ZINC subset ({library_size} compounds), (4) Rank compounds by docking score, (5) Apply ADMET filters, (6) Cluster top hits by scaffold, (7) Select diverse top 50 candidates for experimental testing.
|
|
413
|
+
|
|
414
|
+
### ADMET Prediction
|
|
415
|
+
**Skills:** rdkit, medchem, pytdc, deepchem **[needs files]**
|
|
416
|
+
|
|
417
|
+
Predict ADMET properties for the uploaded compounds. (1) Absorption: Caco-2 permeability, oral bioavailability, P-gp substrate, (2) Distribution: plasma protein binding, VDss, BBB penetration, (3) Metabolism: CYP inhibition/induction (1A2, 2C9, 2C19, 2D6, 3A4), metabolic stability, (4) Excretion: clearance, half-life, (5) Toxicity: hERG, AMES, hepatotoxicity, (6) Generate a traffic-light summary dashboard.
|
|
418
|
+
|
|
419
|
+
### Lead Optimization
|
|
420
|
+
**Skills:** rdkit, medchem, molfeat, deepchem **[needs files]**
|
|
421
|
+
|
|
422
|
+
Optimize the lead compound: {compound} for {target}. (1) Analyze the SAR from the uploaded data, (2) Identify key pharmacophore features, (3) Propose structural modifications to improve {property}, (4) Predict ADMET for proposed analogs, (5) Rank modifications by predicted improvement, (6) Design a focused library of 20-50 analogs for synthesis.
|
|
423
|
+
|
|
424
|
+
### Drug Repurposing
|
|
425
|
+
**Skills:** primekg, drugbank-database, clinicaltrials-database, opentargets-database
|
|
426
|
+
|
|
427
|
+
Identify drug repurposing candidates for: {disease}. (1) Query drug-disease associations from knowledge graphs (PrimeKG), (2) Identify approved drugs targeting related pathways, (3) Check clinical trials for off-label use, (4) Predict drug-target interactions computationally, (5) Assess safety profile from existing clinical data, (6) Rank candidates by evidence strength and feasibility.
|
|
428
|
+
|
|
429
|
+
### PK Modeling
|
|
430
|
+
**Skills:** statsmodels, scientific-visualization, matplotlib, statistical-analysis **[needs files]**
|
|
431
|
+
|
|
432
|
+
Build a pharmacokinetic model for {drug} using the uploaded PK data. (1) Fit compartmental models (1-compartment, 2-compartment), (2) Estimate PK parameters (Cmax, Tmax, AUC, half-life, clearance, Vd), (3) Test for dose linearity, (4) Simulate concentration-time profiles at different doses: {doses}, (5) Predict steady-state concentrations for repeated dosing, (6) Generate PK profile plots.
|
|
433
|
+
|
|
434
|
+
### Dose-Response Analysis
|
|
435
|
+
**Skills:** statistical-analysis, statsmodels, scientific-visualization, matplotlib **[needs files]**
|
|
436
|
+
|
|
437
|
+
Analyze the uploaded dose-response data. (1) Fit a 4-parameter logistic (Hill) curve to each compound, (2) Calculate EC50/IC50 with 95% confidence intervals, (3) Determine Hill coefficient and maximal response, (4) Compare potency across compounds, (5) Assess curve quality (R², residual plots), (6) Generate publication-quality dose-response plots with error bars.
|
|
438
|
+
|
|
439
|
+
### Drug Interaction Prediction
|
|
440
|
+
**Skills:** drugbank-database, rdkit, medchem, clinical-decision-support
|
|
441
|
+
|
|
442
|
+
Predict drug-drug interactions for: {drugs}. (1) Check for known interactions in DrugBank, (2) Predict CYP-mediated metabolic interactions (inhibition, induction), (3) Check for transporter-mediated interactions (P-gp, OATP, BCRP), (4) Assess pharmacodynamic interactions (additive, synergistic, antagonistic), (5) Evaluate clinical significance, (6) Generate an interaction matrix.
|
|
443
|
+
|
|
444
|
+
### Clinical Trial Design
|
|
445
|
+
**Skills:** clinicaltrials-database, statistical-analysis, scientific-writing, writing
|
|
446
|
+
|
|
447
|
+
Design a clinical trial for {drug} in {indication}. (1) Define primary and secondary endpoints, (2) Calculate sample size with power analysis, (3) Describe study design (parallel, crossover, adaptive), (4) Define inclusion/exclusion criteria, (5) Plan dosing regimen and schedule, (6) Describe safety monitoring plan, (7) Outline statistical analysis plan. Follow ICH-GCP guidelines.
|
|
448
|
+
|
|
449
|
+
### Biomarker Discovery
|
|
450
|
+
**Skills:** scikit-learn, shap, scientific-visualization, statistical-analysis **[needs files]**
|
|
451
|
+
|
|
452
|
+
Discover biomarkers for {condition} from the uploaded {data_type} data. (1) Differential analysis between groups, (2) Feature selection (LASSO, random forest importance, mutual information), (3) Build a multi-marker panel classifier, (4) Evaluate with ROC curves and cross-validation, (5) Validate with independent data if available, (6) Assess biological plausibility of top markers via pathway analysis.
|
|
453
|
+
|
|
454
|
+
### Toxicity Prediction
|
|
455
|
+
**Skills:** rdkit, deepchem, pytdc, medchem **[needs files]**
|
|
456
|
+
|
|
457
|
+
Predict toxicity for the uploaded compounds. (1) AMES mutagenicity, (2) hERG channel inhibition (cardiac toxicity), (3) Hepatotoxicity (DILI risk), (4) Skin sensitization, (5) Acute oral toxicity (LD50), (6) Carcinogenicity prediction, (7) Endocrine disruption potential. Generate a traffic-light safety dashboard with confidence scores for each endpoint.
|
|
458
|
+
|
|
459
|
+
### Pharmacogenomics Analysis
|
|
460
|
+
**Skills:** clinpgx-database, drugbank-database, clinvar-database, gene-database
|
|
461
|
+
|
|
462
|
+
Perform pharmacogenomics analysis for {drug}. (1) Identify pharmacogenomic variants from ClinPGx and PharmGKB, (2) Assess how {genotype} variants affect drug metabolism, efficacy, and toxicity, (3) Review FDA pharmacogenomic labels, (4) Predict metabolizer status (poor, intermediate, extensive, ultra-rapid), (5) Recommend dosing adjustments, (6) Generate a clinical PGx report.
|
|
463
|
+
|
|
464
|
+
### Drug-Target Interaction Network
|
|
465
|
+
**Skills:** chembl-database, drugbank-database, bindingdb-database, networkx
|
|
466
|
+
|
|
467
|
+
Build a drug-target interaction network for: {compounds}. (1) Query known targets from ChEMBL, DrugBank, and BindingDB, (2) Predict additional targets computationally, (3) Construct the drug-target network, (4) Identify off-target effects and polypharmacology, (5) Enrich targets with pathway information, (6) Visualize the network and identify therapeutic vs safety-relevant targets.
|
|
468
|
+
|
|
469
|
+
### Pharma Competitive Landscape
|
|
470
|
+
**Skills:** clinicaltrials-database, drugbank-database, fda-database, market-research-reports
|
|
471
|
+
|
|
472
|
+
Analyze the competitive landscape for {indication}. (1) Map all drugs in development (preclinical through Phase 3) from ClinicalTrials.gov, (2) Categorize by mechanism of action, (3) Identify the most advanced programs, (4) Analyze patent expiry timelines, (5) Assess market size and pricing, (6) Identify white space opportunities and unmet needs.
|
|
473
|
+
|
|
474
|
+
### Side Effect Prediction
|
|
475
|
+
**Skills:** rdkit, drugbank-database, medchem, pytdc
|
|
476
|
+
|
|
477
|
+
Predict potential side effects for: {compound}. (1) Query known side effects for structurally similar drugs, (2) Predict off-target activity against safety panels, (3) Analyze structural alerts for reactive metabolites, (4) Predict organ-specific toxicity (liver, kidney, heart, CNS), (5) Compare risk profile with drugs in the same class, (6) Generate a side effect risk report with confidence scores.
|
|
478
|
+
|
|
479
|
+
### Formulation Optimization
|
|
480
|
+
**Skills:** rdkit, medchem, scientific-writing
|
|
481
|
+
|
|
482
|
+
Optimize the formulation of {compound} for {route} administration. (1) Analyze physicochemical properties (solubility, stability, LogP, pKa), (2) Evaluate BCS classification, (3) Screen formulation strategies (salt form, amorphous solid dispersion, nanoparticles, cyclodextrins), (4) Predict dissolution profiles, (5) Recommend excipient selection, (6) Design stability testing plan.
|
|
483
|
+
|
|
484
|
+
## Ecology and Environmental Science
|
|
485
|
+
|
|
486
|
+
### Species Distribution Model
|
|
487
|
+
**Skills:** geopandas, scikit-learn, scientific-visualization, matplotlib **[needs files]**
|
|
488
|
+
|
|
489
|
+
Build a species distribution model for: {species}. (1) Compile occurrence records from GBIF or uploaded data, (2) Extract environmental variables (bioclim, land cover, elevation), (3) Fit MaxEnt or random forest SDM, (4) Evaluate model (AUC, TSS), (5) Generate habitat suitability map, (6) Project under future climate scenarios ({scenario}) if requested.
|
|
490
|
+
|
|
491
|
+
### Biodiversity Assessment
|
|
492
|
+
**Skills:** scikit-bio, scientific-visualization, statistical-analysis, matplotlib **[needs files]**
|
|
493
|
+
|
|
494
|
+
Perform a biodiversity assessment on the uploaded community data. (1) Calculate species richness and rarefaction curves, (2) Compute diversity indices (Shannon, Simpson, Fisher's alpha), (3) Analyze species abundance distributions, (4) Compare communities between {sites} using beta diversity (Bray-Curtis, Jaccard), (5) Ordination (NMDS, PCoA), (6) Test for significant differences (PERMANOVA).
|
|
495
|
+
|
|
496
|
+
### Population Dynamics Modeling
|
|
497
|
+
**Skills:** sympy, matplotlib, scientific-visualization, statsmodels **[needs files]**
|
|
498
|
+
|
|
499
|
+
Model population dynamics for: {system}. (1) Define the model structure ({model_type}), (2) Estimate parameters from the uploaded data, (3) Simulate population trajectories, (4) Analyze equilibria and stability, (5) Perform sensitivity analysis on key parameters, (6) Generate phase portraits and time series plots. {scenario}
|
|
500
|
+
|
|
501
|
+
### Climate Data Analysis
|
|
502
|
+
**Skills:** geopandas, geomaster, scientific-visualization, statistical-analysis
|
|
503
|
+
|
|
504
|
+
Analyze climate data for: {region}. (1) Compute trends in temperature and precipitation over {period}, (2) Detect changepoints and regime shifts, (3) Analyze seasonal patterns and anomalies, (4) Compare with climate model projections, (5) Calculate extreme event frequencies (heat waves, droughts, floods), (6) Generate trend maps and time series visualizations.
|
|
505
|
+
|
|
506
|
+
### Remote Sensing Analysis
|
|
507
|
+
**Skills:** geopandas, geomaster, scientific-visualization, scikit-learn **[needs files]**
|
|
508
|
+
|
|
509
|
+
Analyze the uploaded satellite imagery ({sensor}). (1) Preprocess (atmospheric correction, cloud masking), (2) Calculate relevant indices: {indices}, (3) Perform land cover classification, (4) Detect changes between time periods, (5) Quantify area statistics per class, (6) Generate publication-quality maps with legends and scale bars.
|
|
510
|
+
|
|
511
|
+
### Phylogeographic Analysis
|
|
512
|
+
**Skills:** phylogenetics, biopython, geopandas, etetoolkit **[needs files]**
|
|
513
|
+
|
|
514
|
+
Perform a phylogeographic analysis for: {taxon}. (1) Build a phylogenetic tree from the uploaded sequences, (2) Map haplotypes to geographic locations, (3) Construct a haplotype network, (4) Test for isolation by distance, (5) Infer ancestral areas and dispersal routes, (6) Analyze demographic history (Bayesian skyline plot). Visualize on maps.
|
|
515
|
+
|
|
516
|
+
### Ecological Network Analysis
|
|
517
|
+
**Skills:** networkx, scientific-visualization, matplotlib, statistical-analysis **[needs files]**
|
|
518
|
+
|
|
519
|
+
Analyze the uploaded ecological interaction network ({network_type}). (1) Compute network metrics (connectance, nestedness, modularity), (2) Identify keystone species (high centrality), (3) Analyze network robustness to species loss, (4) Detect modules and their composition, (5) Compare with null models, (6) Visualize the network with nodes sized by importance.
|
|
520
|
+
|
|
521
|
+
### Conservation Prioritization
|
|
522
|
+
**Skills:** geopandas, geomaster, scientific-visualization, research-lookup
|
|
523
|
+
|
|
524
|
+
Perform conservation prioritization for {target} in {region}. (1) Compile species occurrence and threat status data, (2) Map areas of high biodiversity value, (3) Overlay with threat layers (deforestation, urbanization, climate change), (4) Run systematic conservation planning (complementarity analysis), (5) Identify priority areas that maximize species representation, (6) Assess protection gap (currently protected vs needed).
|
|
525
|
+
|
|
526
|
+
### Water Quality Analysis
|
|
527
|
+
**Skills:** exploratory-data-analysis, scientific-visualization, statistical-analysis, matplotlib **[needs files]**
|
|
528
|
+
|
|
529
|
+
Analyze the uploaded water quality dataset. (1) Summarize key parameters (pH, DO, turbidity, nutrients, heavy metals), (2) Compare against regulatory standards ({standards}), (3) Analyze spatial patterns across sampling sites, (4) Detect temporal trends, (5) Perform water quality index calculation, (6) Identify pollution sources using multivariate analysis. Flag exceedances.
|
|
530
|
+
|
|
531
|
+
### Carbon Footprint Analysis
|
|
532
|
+
**Skills:** exploratory-data-analysis, scientific-visualization, research-lookup, xlsx **[needs files]**
|
|
533
|
+
|
|
534
|
+
Calculate the carbon footprint for: {entity}. (1) Define system boundaries and scope (1, 2, 3), (2) Collect activity data from uploaded records, (3) Apply emission factors from IPCC/EPA databases, (4) Calculate total CO2-equivalent emissions by category, (5) Identify emission hotspots, (6) Benchmark against industry averages, (7) Recommend reduction strategies with estimated impact.
|
|
535
|
+
|
|
536
|
+
### Environmental Impact Assessment
|
|
537
|
+
**Skills:** research-lookup, scientific-writing, writing, geopandas
|
|
538
|
+
|
|
539
|
+
Conduct an environmental impact assessment for: {project}. (1) Describe the project and its setting, (2) Identify potential impacts on air, water, soil, biodiversity, (3) Assess impact magnitude and significance, (4) Propose mitigation measures for each significant impact, (5) Develop a monitoring plan, (6) Summarize in an impact matrix. Follow {framework} framework.
|
|
540
|
+
|
|
541
|
+
### Habitat Suitability Analysis
|
|
542
|
+
**Skills:** geopandas, geomaster, scientific-visualization, research-lookup
|
|
543
|
+
|
|
544
|
+
Assess habitat suitability for {species} in {region}. (1) Define habitat requirements from literature, (2) Compile environmental layers (vegetation, elevation, hydrology, temperature), (3) Score each cell by habitat suitability criteria, (4) Classify habitat quality (optimal, suitable, marginal, unsuitable), (5) Calculate total suitable habitat area, (6) Map habitat suitability and identify corridors.
|
|
545
|
+
|
|
546
|
+
### Microbial Community Ecology
|
|
547
|
+
**Skills:** scikit-bio, pydeseq2, scientific-visualization, statistical-analysis **[needs files]**
|
|
548
|
+
|
|
549
|
+
Analyze the uploaded 16S/ITS amplicon data. (1) Process sequences (quality filter, denoise with DADA2), (2) Taxonomic assignment against {database}, (3) Alpha diversity (observed, Shannon, Faith's PD), (4) Beta diversity (UniFrac, Bray-Curtis), (5) Differential abundance between {comparison} (DESeq2/ANCOM), (6) Core microbiome analysis, (7) Visualize community composition and diversity.
|
|
550
|
+
|
|
551
|
+
### Invasive Species Risk Assessment
|
|
552
|
+
**Skills:** geopandas, research-lookup, scientific-writing, scientific-visualization
|
|
553
|
+
|
|
554
|
+
Assess the invasion risk of {species} in {region}. (1) Characterize the species' native range and environmental tolerances, (2) Model potential distribution in the target region, (3) Assess introduction pathways and propagule pressure, (4) Evaluate potential ecological and economic impacts, (5) Assess management feasibility, (6) Assign an overall risk score. Provide management recommendations.
|
|
555
|
+
|
|
556
|
+
## Engineering and Simulation
|
|
557
|
+
|
|
558
|
+
### CFD Simulation
|
|
559
|
+
**Skills:** fluidsim, matplotlib, scientific-visualization
|
|
560
|
+
|
|
561
|
+
Set up and run a CFD simulation for: {geometry}. (1) Define the geometry and meshing strategy, (2) Set boundary conditions: {conditions}, (3) Select turbulence model (k-ε, k-ω SST, LES), (4) Run the simulation to convergence, (5) Post-process: velocity fields, pressure distribution, drag/lift coefficients, (6) Visualize streamlines and contour plots.
|
|
562
|
+
|
|
563
|
+
### Signal Processing
|
|
564
|
+
**Skills:** matplotlib, scientific-visualization, neurokit2, statistical-analysis **[needs files]**
|
|
565
|
+
|
|
566
|
+
Process the uploaded signal data. (1) Characterize the signal (sample rate, duration, channels), (2) Apply filtering: {filter_spec}, (3) Compute FFT and power spectral density, (4) Perform time-frequency analysis (STFT, wavelet transform), (5) Extract features: {features}, (6) Detect events or anomalies, (7) Compare before/after processing.
|
|
567
|
+
|
|
568
|
+
### Control System Design
|
|
569
|
+
**Skills:** sympy, matlab, matplotlib, scientific-visualization
|
|
570
|
+
|
|
571
|
+
Design a control system for: {plant}. Requirements: {specs}. (1) Model the plant dynamics (transfer function or state-space), (2) Analyze open-loop stability and performance, (3) Design a {controller_type} controller, (4) Tune controller parameters, (5) Analyze closed-loop: step response, Bode plot, root locus, (6) Verify robustness to model uncertainty and disturbances.
|
|
572
|
+
|
|
573
|
+
### Heat Transfer Analysis
|
|
574
|
+
**Skills:** sympy, matplotlib, scientific-visualization
|
|
575
|
+
|
|
576
|
+
Analyze heat transfer in: {system}. (1) Define the geometry, materials, and thermal boundary conditions, (2) Set up the heat equation (conduction, convection coefficients, radiation), (3) Solve for temperature distribution (analytical or FEM), (4) Calculate heat flux and total heat transfer rate, (5) Analyze thermal resistance network, (6) Visualize temperature contours and heat flow paths.
|
|
577
|
+
|
|
578
|
+
### Vibration Analysis
|
|
579
|
+
**Skills:** matplotlib, scientific-visualization, statistical-analysis **[needs files]**
|
|
580
|
+
|
|
581
|
+
Analyze vibrations in the uploaded data or system: {system}. (1) Compute frequency spectrum (FFT), (2) Identify natural frequencies and mode shapes, (3) Calculate damping ratios, (4) Perform order tracking if rotating machinery, (5) Compare with operational limits and standards ({standard}), (6) Identify fault signatures if diagnostic. Generate waterfall and Campbell diagrams.
|
|
582
|
+
|
|
583
|
+
### Process Simulation
|
|
584
|
+
**Skills:** simpy, sympy, matplotlib, scientific-visualization
|
|
585
|
+
|
|
586
|
+
Simulate the process: {process}. (1) Define the process flow diagram and unit operations, (2) Specify feed compositions and operating conditions, (3) Simulate using discrete event or continuous simulation, (4) Calculate mass and energy balances, (5) Optimize for {objective}, (6) Perform sensitivity analysis on key parameters. Report yields, throughputs, and utility consumption.
|
|
587
|
+
|
|
588
|
+
### Reliability Analysis
|
|
589
|
+
**Skills:** scikit-survival, statistical-analysis, scientific-visualization, matplotlib
|
|
590
|
+
|
|
591
|
+
Perform reliability analysis for: {system}. (1) Fit failure time distributions (Weibull, exponential, lognormal), (2) Estimate MTTF/MTBF and failure rates, (3) Construct reliability block diagram or fault tree, (4) Calculate system-level reliability and availability, (5) Perform failure mode analysis (FMEA), (6) Recommend optimal maintenance intervals.
|
|
592
|
+
|
|
593
|
+
### Sensor / IoT Data Analysis
|
|
594
|
+
**Skills:** polars, scikit-learn, scientific-visualization, matplotlib **[needs files]**
|
|
595
|
+
|
|
596
|
+
Analyze the uploaded sensor/IoT data ({sensors}). (1) Clean and synchronize multi-sensor streams, (2) Detect and handle missing data and outliers, (3) Extract statistical and frequency-domain features, (4) Correlate sensor readings with {events}, (5) Build anomaly detection models for predictive maintenance, (6) Create a monitoring dashboard visualization.
|
|
597
|
+
|
|
598
|
+
### Robot Path Planning
|
|
599
|
+
**Skills:** matplotlib, scientific-visualization, pymoo **[needs files]**
|
|
600
|
+
|
|
601
|
+
Plan a path for a {robot_type} robot in the uploaded environment. (1) Define the configuration space and obstacles, (2) Apply {algorithm} path planning, (3) Optimize for {objective}, (4) Smooth the path for physical feasibility, (5) Verify collision-free traversal, (6) Visualize the planned path in 2D/3D with obstacles. Report path length and computation time.
|
|
602
|
+
|
|
603
|
+
### Structural Analysis
|
|
604
|
+
**Skills:** sympy, matplotlib, scientific-visualization
|
|
605
|
+
|
|
606
|
+
Perform structural analysis on: {structure}. Loads: {loads}. (1) Define the structural model (beams, frames, plates), (2) Apply material properties and boundary conditions, (3) Solve for reactions, internal forces, and displacements, (4) Check stresses against material limits (safety factor = {sf}), (5) Analyze buckling if applicable, (6) Visualize deformed shape and stress distribution.
|
|
607
|
+
|
|
608
|
+
### Finite Element Analysis
|
|
609
|
+
**Skills:** sympy, matplotlib, scientific-visualization
|
|
610
|
+
|
|
611
|
+
Perform finite element analysis for: {problem}. (1) Define the geometry and create the mesh, (2) Assign material properties, (3) Apply boundary conditions and loads: {conditions}, (4) Solve the FEM problem, (5) Post-process: stress/strain fields, displacement, temperature, (6) Check convergence with mesh refinement, (7) Visualize results with contour plots.
|
|
612
|
+
|
|
613
|
+
### Circuit Simulation
|
|
614
|
+
**Skills:** sympy, matlab, matplotlib, scientific-visualization
|
|
615
|
+
|
|
616
|
+
Simulate the electronic circuit: {circuit}. (1) Define the circuit topology and component values, (2) Run DC operating point analysis, (3) Run AC frequency response (Bode plot), (4) Run transient analysis with input: {input_signal}, (5) Analyze: gain, bandwidth, phase margin, power consumption, (6) Optimize component values for {objective}.
|
|
617
|
+
|
|
618
|
+
## Finance and Economics
|
|
619
|
+
|
|
620
|
+
### Stock Market Analysis
|
|
621
|
+
**Skills:** alpha-vantage, scientific-visualization, matplotlib, statistical-analysis
|
|
622
|
+
|
|
623
|
+
Analyze {ticker} stock performance. (1) Plot price history and volume over {period}, (2) Calculate technical indicators (SMA, EMA, RSI, MACD, Bollinger Bands), (3) Identify support/resistance levels, (4) Analyze fundamental ratios (P/E, P/B, EV/EBITDA), (5) Compare with sector peers, (6) Perform correlation analysis with market indices. Generate a comprehensive analysis report.
|
|
624
|
+
|
|
625
|
+
### Portfolio Optimization
|
|
626
|
+
**Skills:** alpha-vantage, pymoo, scientific-visualization, statistical-analysis **[needs files]**
|
|
627
|
+
|
|
628
|
+
Optimize a portfolio from the uploaded asset returns data. (1) Calculate expected returns and covariance matrix, (2) Generate the efficient frontier, (3) Find the tangency (maximum Sharpe) portfolio, (4) Calculate minimum variance portfolio, (5) Apply constraints: {constraints}, (6) Backtest optimal portfolio over {period}, (7) Report allocation weights, expected return, volatility, and Sharpe ratio.
|
|
629
|
+
|
|
630
|
+
### Financial Risk Assessment
|
|
631
|
+
**Skills:** alpha-vantage, statistical-analysis, scientific-visualization, pymc **[needs files]**
|
|
632
|
+
|
|
633
|
+
Perform risk assessment on the uploaded portfolio data. (1) Calculate Value at Risk (VaR) at 95% and 99% confidence using historical, parametric, and Monte Carlo methods, (2) Compute Conditional VaR (Expected Shortfall), (3) Perform stress testing with scenarios: {scenarios}, (4) Analyze drawdown history, (5) Calculate risk-adjusted performance metrics, (6) Generate a risk dashboard.
|
|
634
|
+
|
|
635
|
+
### Economic Indicator Analysis
|
|
636
|
+
**Skills:** fred-economic-data, datacommons-client, scientific-visualization, statistical-analysis
|
|
637
|
+
|
|
638
|
+
Analyze economic indicators for {country}. (1) Pull data from FRED/World Bank for: {indicators}, (2) Plot trends over {period}, (3) Analyze correlations between indicators, (4) Identify leading vs lagging relationships, (5) Compare with {benchmark} countries, (6) Generate economic outlook summary with key risks and opportunities.
|
|
639
|
+
|
|
640
|
+
### Financial Statement Analysis
|
|
641
|
+
**Skills:** edgartools, xlsx, scientific-visualization, statistical-analysis
|
|
642
|
+
|
|
643
|
+
Analyze the financial statements of {company}. (1) Parse income statement, balance sheet, and cash flow, (2) Calculate key ratios (profitability, liquidity, leverage, efficiency), (3) Perform DuPont decomposition of ROE, (4) Analyze trends over {years} years, (5) Compare with industry peers, (6) Identify red flags or strengths, (7) Provide a financial health assessment.
|
|
644
|
+
|
|
645
|
+
### Hedge Fund Analysis
|
|
646
|
+
**Skills:** hedgefundmonitor, alpha-vantage, scientific-visualization, statistical-analysis
|
|
647
|
+
|
|
648
|
+
Analyze hedge fund performance for: {fund}. (1) Calculate returns, alpha, beta, and Sharpe ratio, (2) Decompose returns by factor exposure (Fama-French, momentum), (3) Analyze drawdowns and recovery periods, (4) Assess strategy consistency and style drift, (5) Compare with benchmark and peer funds, (6) Evaluate risk-adjusted performance across market regimes.
|
|
649
|
+
|
|
650
|
+
### Cryptocurrency Analysis
|
|
651
|
+
**Skills:** alpha-vantage, scientific-visualization, statistical-analysis, matplotlib
|
|
652
|
+
|
|
653
|
+
Analyze {crypto} cryptocurrency. (1) Plot price and volume history, (2) Calculate volatility and drawdown metrics, (3) Analyze correlation with BTC, ETH, and traditional assets, (4) Compute technical indicators, (5) Analyze on-chain metrics if available (active addresses, hash rate, NVT), (6) Compare with top {n} cryptocurrencies by market cap.
|
|
654
|
+
|
|
655
|
+
### Financial Time Series Forecasting
|
|
656
|
+
**Skills:** timesfm-forecasting, statsmodels, scientific-visualization, scikit-learn **[needs files]**
|
|
657
|
+
|
|
658
|
+
Forecast the uploaded financial time series ({series_type}) for the next {horizon}. (1) Analyze stationarity (ADF test), (2) Fit ARIMA/GARCH models, (3) Fit ML models (XGBoost, LSTM), (4) Compare forecast accuracy (RMSE, MAPE, Diebold-Mariano test), (5) Generate prediction intervals, (6) Backtest forecasting performance over a rolling window.
|
|
659
|
+
|
|
660
|
+
### Credit Risk Model
|
|
661
|
+
**Skills:** scikit-learn, shap, scientific-visualization, statistical-analysis **[needs files]**
|
|
662
|
+
|
|
663
|
+
Build a credit risk model using the uploaded loan/credit data. (1) EDA: analyze default rates, feature distributions, (2) Engineer credit features (utilization, payment history, DTI), (3) Train models (logistic regression, gradient boosting), (4) Evaluate: AUC, KS statistic, Gini coefficient, (5) Calibrate predicted probabilities, (6) Create scorecard with point allocation, (7) Analyze model fairness across demographic groups.
|
|
664
|
+
|
|
665
|
+
### Market Sentiment Analysis
|
|
666
|
+
**Skills:** transformers, scientific-visualization, statistical-analysis, research-lookup
|
|
667
|
+
|
|
668
|
+
Analyze market sentiment for {asset_or_sector}. (1) Collect and process text data from {sources}, (2) Apply NLP sentiment scoring (FinBERT or similar), (3) Track sentiment over time, (4) Correlate sentiment with price movements, (5) Identify sentiment-driven events, (6) Generate a sentiment dashboard with bull/bear indicators.
|
|
669
|
+
|
|
670
|
+
### Econometric Modeling
|
|
671
|
+
**Skills:** statsmodels, statistical-analysis, scientific-visualization, fred-economic-data
|
|
672
|
+
|
|
673
|
+
Build an econometric model to estimate: {relationship}. (1) Specify the model (OLS, IV, panel, difference-in-differences), (2) Check for endogeneity and propose instruments if needed, (3) Test assumptions (heteroskedasticity, autocorrelation, multicollinearity), (4) Estimate with robust standard errors, (5) Report marginal effects and elasticities, (6) Interpret results and discuss policy implications.
|
|
674
|
+
|
|
675
|
+
### Fiscal Policy Analysis
|
|
676
|
+
**Skills:** usfiscaldata, fred-economic-data, scientific-visualization, statistical-analysis
|
|
677
|
+
|
|
678
|
+
Analyze fiscal policy for {country}. (1) Compile revenue and expenditure data from {source}, (2) Analyze budget balance trends, (3) Decompose debt dynamics (primary balance, interest rate, growth rate), (4) Project debt-to-GDP ratio under baseline and stress scenarios, (5) Assess fiscal sustainability, (6) Compare with peer countries and IMF thresholds.
|
|
679
|
+
|
|
680
|
+
### Real Estate Market Analysis
|
|
681
|
+
**Skills:** scikit-learn, scientific-visualization, statistical-analysis, geopandas
|
|
682
|
+
|
|
683
|
+
Analyze the real estate market in {location}. (1) Compile price data and transaction volumes, (2) Analyze price trends and seasonality, (3) Calculate cap rates and yield metrics, (4) Compare neighborhoods/submarkets, (5) Build a price prediction model using features: {features}, (6) Identify undervalued areas and investment opportunities.
|
|
684
|
+
|
|
685
|
+
### Startup Valuation
|
|
686
|
+
**Skills:** xlsx, scientific-visualization, what-if-oracle, market-research-reports **[needs files]**
|
|
687
|
+
|
|
688
|
+
Value the startup: {company}. (1) Analyze financials from the uploaded data, (2) Apply DCF model with {growth} revenue growth scenarios, (3) Apply comparable company multiples (revenue, EBITDA), (4) Apply comparable transaction multiples, (5) Score using the Scorecard/Berkus method for early stage, (6) Provide a valuation range with justification for each method.
|
|
689
|
+
|
|
690
|
+
### ESG Analysis
|
|
691
|
+
**Skills:** edgartools, research-lookup, scientific-visualization, xlsx
|
|
692
|
+
|
|
693
|
+
Perform ESG analysis for {company}. (1) Compile ESG metrics from sustainability reports and databases, (2) Score E (carbon, water, waste), S (labor, diversity, community), G (board, ethics, transparency), (3) Compare with industry peers, (4) Identify material ESG risks, (5) Analyze ESG trajectory over time, (6) Assess regulatory compliance and disclosure quality.
|
|
694
|
+
|
|
695
|
+
### Trade Flow Analysis
|
|
696
|
+
**Skills:** datacommons-client, scientific-visualization, geopandas, statistical-analysis **[needs files]**
|
|
697
|
+
|
|
698
|
+
Analyze trade flows for {country} in {sector}. (1) Compile import/export data from UN Comtrade or uploaded data, (2) Identify top trading partners, (3) Analyze trade balance trends, (4) Calculate revealed comparative advantage (RCA), (5) Visualize trade flows with Sankey diagrams, (6) Assess impact of tariffs or trade agreements on flows.
|
|
699
|
+
|
|
700
|
+
### VC Deal Screening
|
|
701
|
+
**Skills:** market-research-reports, research-lookup, edgartools, scientific-visualization **[needs files]**
|
|
702
|
+
|
|
703
|
+
Screen {company} as a potential venture investment. (1) Analyze the business model, value proposition, and defensibility, (2) Size the TAM/SAM/SOM for {market}, (3) Evaluate the founding team's background and track record, (4) Assess competitive landscape and differentiation, (5) Analyze unit economics (CAC, LTV, gross margin, burn rate) from uploaded financials, (6) Identify key risks (market, technical, regulatory, execution), (7) Compare with analogous companies at the same stage, (8) Prov...
|
|
704
|
+
|
|
705
|
+
### VC Fund Benchmarking
|
|
706
|
+
**Skills:** scientific-visualization, matplotlib, statistical-analysis, xlsx **[needs files]**
|
|
707
|
+
|
|
708
|
+
Benchmark the uploaded fund data against the VC industry. (1) Calculate fund-level metrics: TVPI, DPI, RVPI, net IRR, (2) Compare against Cambridge Associates / PitchBook benchmarks for {vintage} vintage, (3) Analyze the J-curve and cash flow profile, (4) Break down returns by sector, stage, and geography, (5) Assess portfolio concentration and diversification, (6) Model scenarios for unrealized portfolio, (7) Generate a GP-quality fund performance tear sheet.
|
|
709
|
+
|
|
710
|
+
### Cap Table Modeling
|
|
711
|
+
**Skills:** scientific-visualization, matplotlib, xlsx, what-if-oracle **[needs files]**
|
|
712
|
+
|
|
713
|
+
Build a cap table model for {company}. (1) Set up the current ownership structure from the uploaded data, (2) Model the next round: {round_details}, (3) Calculate dilution impact on each stakeholder (founders, employees, existing investors), (4) Build a liquidation waterfall for exit at {exit_values} valuations, (5) Model the option pool expansion, (6) Calculate returns multiples and IRR for each investor class, (7) Visualize ownership evolution across rounds.
|
|
714
|
+
|
|
715
|
+
### Market Sizing (TAM/SAM/SOM)
|
|
716
|
+
**Skills:** market-research-reports, research-lookup, scientific-visualization, datacommons-client
|
|
717
|
+
|
|
718
|
+
Size the market for {market}. (1) Top-down: start from the broadest addressable market and apply segmentation filters, (2) Bottom-up: estimate from unit economics × addressable customers, (3) Cross-validate both approaches, (4) Analyze market growth rate and key drivers, (5) Map the competitive landscape and market share distribution, (6) Project market size for the next {years} years under base and bull scenarios. Cite all data sources.
|
|
719
|
+
|
|
720
|
+
### DCF Valuation Model
|
|
721
|
+
**Skills:** xlsx, scientific-visualization, what-if-oracle, statistical-analysis
|
|
722
|
+
|
|
723
|
+
Build a DCF valuation for {company}. (1) Project revenue for {years} years using growth assumptions: {growth}, (2) Model operating expenses, EBITDA margins, capex, and working capital, (3) Calculate unlevered free cash flows, (4) Determine WACC (cost of equity via CAPM, cost of debt from comparables), (5) Compute terminal value (perpetuity growth and exit multiple methods), (6) Discount to present value, (7) Run sensitivity tables on WACC vs growth rate and WACC vs exit multiple, (8) Report i...
|
|
724
|
+
|
|
725
|
+
### Comparable Company Analysis
|
|
726
|
+
**Skills:** edgartools, xlsx, scientific-visualization, alpha-vantage
|
|
727
|
+
|
|
728
|
+
Perform a comparable company analysis for {company}. Peer set: {peers}. (1) Pull financial data for each company (revenue, EBITDA, net income, growth rates), (2) Calculate valuation multiples (EV/Revenue, EV/EBITDA, P/E, PEG, EV/FCF), (3) Analyze operating metrics (margins, ROIC, revenue per employee), (4) Compute mean/median multiples and implied valuation range for {company}, (5) Create a football field valuation chart, (6) Identify outliers and explain premium/discount drivers.
|
|
729
|
+
|
|
730
|
+
### M&A Deal Analysis
|
|
731
|
+
**Skills:** edgartools, xlsx, scientific-visualization, what-if-oracle
|
|
732
|
+
|
|
733
|
+
Analyze the potential acquisition of {target} by {acquirer}. Deal terms: {terms}. (1) Value the target standalone (DCF + comps), (2) Estimate revenue and cost synergies, (3) Model the pro-forma combined entity, (4) Run accretion/dilution analysis on EPS, (5) Analyze financing scenarios (cash, stock, debt mix), (6) Assess goodwill and intangible asset implications, (7) Compare with precedent M&A transactions in the space, (8) Evaluate strategic rationale and integration risks.
|
|
734
|
+
|
|
735
|
+
### LBO Model
|
|
736
|
+
**Skills:** xlsx, scientific-visualization, what-if-oracle, statistical-analysis
|
|
737
|
+
|
|
738
|
+
Build an LBO model for {company}. Entry: {entry_terms}. (1) Set up the sources and uses of funds, (2) Build a 5-year operating model with revenue growth: {growth} and margin expansion assumptions, (3) Construct the debt schedule (senior, mezzanine, revolver) with amortization and cash sweep, (4) Model credit metrics (leverage ratio, interest coverage, FCCR) each year, (5) Calculate exit returns at {exit_multiples} EV/EBITDA multiples, (6) Run sensitivity on entry multiple, leverage, and growt...
|
|
739
|
+
|
|
740
|
+
### PE / VC Due Diligence Report
|
|
741
|
+
**Skills:** edgartools, market-research-reports, research-lookup, xlsx
|
|
742
|
+
|
|
743
|
+
Conduct due diligence on {company} for a potential {deal_type} investment. (1) Financial DD: analyze 3-5 years of financials — revenue quality, margin trends, working capital cycles, capex requirements, (2) Commercial DD: market position, customer concentration, competitive moats, TAM analysis, (3) Operational DD: management team assessment, key person risk, scalability of operations, (4) Legal/regulatory: flag potential risks in the sector, (5) Technology DD if relevant: IP, tech stack, tech...
|
|
744
|
+
|
|
745
|
+
### Startup Data Room Due Diligence
|
|
746
|
+
**Skills:** edgartools, market-research-reports, research-lookup, xlsx, scientific-visualization **[needs files]**
|
|
747
|
+
|
|
748
|
+
Conduct comprehensive investment due diligence on {company} by analyzing the uploaded data room files. Work through each file systematically. (1) Financial DD: parse and analyze historical P&L, balance sheet, and cash flow statements — assess revenue quality, burn rate, runway, unit economics, and working capital trends, (2) Commercial DD: review customer data (concentration, retention cohorts, NPS scores, pipeline) and validate TAM/SAM claims against uploaded market data, (3) Legal DD: revie...
|
|
749
|
+
|
|
750
|
+
### Pitch Deck Teardown
|
|
751
|
+
**Skills:** market-research-reports, research-lookup, scientific-critical-thinking **[needs files]**
|
|
752
|
+
|
|
753
|
+
Analyze the uploaded pitch deck for {company}. Score each section (1-10) and provide feedback: (1) Problem statement — is it compelling and real? (2) Solution — does it clearly solve the problem? (3) Market size — is the TAM/SAM credible? (4) Business model — are unit economics attractive? (5) Traction — what evidence of product-market fit? (6) Team — relevant experience and completeness? (7) Competition — honest assessment of landscape? (8) Financials — are projections realistic? (9) Ask — i...
|
|
754
|
+
|
|
755
|
+
### Industry Deep Dive
|
|
756
|
+
**Skills:** market-research-reports, research-lookup, edgartools, scientific-visualization
|
|
757
|
+
|
|
758
|
+
Conduct an industry deep dive on {industry}. (1) Define the industry value chain and key segments, (2) Analyze market size, growth trajectory, and cyclicality, (3) Map the competitive landscape (Porter's Five Forces), (4) Identify secular tailwinds and headwinds, (5) Profile the top {n} public and private companies with financials, (6) Analyze recent M&A activity and deal multiples, (7) Identify emerging disruptors and technology shifts, (8) Develop an investment thesis with specific opportun...
|
|
759
|
+
|
|
760
|
+
### Write an Investment Memo
|
|
761
|
+
**Skills:** scientific-writing, writing, market-research-reports, research-lookup
|
|
762
|
+
|
|
763
|
+
Write a formal investment memo for {company}. Structure: (1) Executive summary and recommendation, (2) Company overview (product, business model, stage), (3) Market opportunity (TAM, growth, dynamics), (4) Competitive positioning and moats, (5) Financial analysis (historical performance, projections, unit economics), (6) Valuation and proposed terms: {terms}, (7) Key risks and mitigants, (8) Value creation levers and exit scenarios, (9) Appendix with supporting data. Write in a professional t...
|
|
764
|
+
|
|
765
|
+
### Equity Research Report
|
|
766
|
+
**Skills:** edgartools, alpha-vantage, scientific-visualization, xlsx
|
|
767
|
+
|
|
768
|
+
Write an equity research report on {ticker}. (1) Company overview and business segments, (2) Industry analysis and competitive positioning, (3) Financial analysis: revenue decomposition, margin analysis, balance sheet health, (4) Build a 3-year financial model with quarterly estimates, (5) Valuation: DCF, trading comps, and sum-of-the-parts, (6) Derive a 12-month price target, (7) Rate as Buy/Hold/Sell with upside/downside to target, (8) Identify catalysts and risks. Follow sell-side research...
|
|
769
|
+
|
|
770
|
+
### Fund-of-Funds Portfolio Analysis
|
|
771
|
+
**Skills:** scientific-visualization, matplotlib, statistical-analysis, xlsx **[needs files]**
|
|
772
|
+
|
|
773
|
+
Analyze the uploaded fund-of-funds portfolio. (1) Calculate portfolio-level returns (net IRR, TVPI, DPI), (2) Break down by strategy (venture, growth, buyout), vintage, and geography, (3) Assess manager concentration and diversification, (4) Analyze cash flow pacing and unfunded commitments, (5) Benchmark each fund against its peer quartile, (6) Model future cash flows and NAV projections for the next {years} years, (7) Identify re-up candidates vs underperformers, (8) Generate an LP portfoli...
|
|
774
|
+
|
|
775
|
+
### Scenario & Sensitivity Modeling
|
|
776
|
+
**Skills:** pymc, scientific-visualization, what-if-oracle, xlsx
|
|
777
|
+
|
|
778
|
+
Build a multi-scenario model for {company}. (1) Define base, bull, and bear case assumptions for: {variables}, (2) Build a 3-statement financial model for each scenario, (3) Create tornado charts showing sensitivity of valuation to each variable, (4) Run a Monte Carlo simulation ({n_sims} iterations) sampling from distributions around key assumptions, (5) Plot the probability distribution of outcomes (revenue, EBITDA, valuation), (6) Calculate probability-weighted expected value and confidenc...
|
|
779
|
+
|
|
780
|
+
### Convertible Note / SAFE Analysis
|
|
781
|
+
**Skills:** scientific-visualization, matplotlib, xlsx, what-if-oracle
|
|
782
|
+
|
|
783
|
+
Model conversion scenarios for the following convertible instruments: {instruments}. (1) Detail each instrument's terms (cap, discount, interest rate, maturity), (2) Model conversion at various Series A valuations: {valuations}, (3) Calculate the effective price per share for each instrument at each valuation, (4) Compare investor ownership percentages vs a priced round, (5) Analyze the total dilution to founders, (6) Model MFN and pro-rata scenarios if applicable, (7) Visualize ownership sta...
|
|
784
|
+
|
|
785
|
+
### Cohort & Revenue Quality Analysis
|
|
786
|
+
**Skills:** scientific-visualization, matplotlib, statistical-analysis, polars **[needs files]**
|
|
787
|
+
|
|
788
|
+
Analyze revenue quality from the uploaded cohort data for {company}. (1) Build a cohort retention matrix (logo and revenue retention), (2) Calculate net dollar retention (NDR) and gross retention by cohort, (3) Decompose revenue into new, expansion, contraction, and churn, (4) Analyze LTV/CAC ratio by acquisition channel and cohort, (5) Calculate payback period, (6) Plot NDR trends and revenue bridge waterfall, (7) Identify the strongest and weakest cohorts and explain drivers.
|
|
789
|
+
|
|
790
|
+
### Secondaries Pricing Analysis
|
|
791
|
+
**Skills:** scientific-visualization, what-if-oracle, xlsx, statistical-analysis
|
|
792
|
+
|
|
793
|
+
Price a secondary transaction for {asset}. (1) Analyze the current portfolio composition and NAV, (2) Apply appropriate discounts/premiums by segment (early-stage: steeper discount, late-stage/PE: tighter), (3) Model the remaining value creation potential, (4) Estimate future distributions and cash flow timeline, (5) Compare with recent secondary market pricing data, (6) Calculate buyer IRR and MOIC at various discount levels ({discounts} of NAV), (7) Recommend a bid range with rationale.
|
|
794
|
+
|
|
795
|
+
### Factor Analysis & Attribution
|
|
796
|
+
**Skills:** alpha-vantage, statsmodels, scientific-visualization, statistical-analysis **[needs files]**
|
|
797
|
+
|
|
798
|
+
Perform factor analysis on the uploaded portfolio returns data. (1) Regress returns against Fama-French 5 factors (market, size, value, profitability, investment), (2) Add momentum and quality factors, (3) Calculate factor exposures (betas) and their statistical significance, (4) Decompose returns into factor-driven and alpha components, (5) Run rolling-window analysis to detect factor timing or drift, (6) Perform Brinson attribution by sector and geography if holdings available, (7) Visualiz...
|
|
799
|
+
|
|
800
|
+
### Venture Market Map
|
|
801
|
+
**Skills:** market-research-reports, research-lookup, scientific-visualization, markdown-mermaid-writing
|
|
802
|
+
|
|
803
|
+
Create a venture market map for the {sector} sector. (1) Identify all notable startups (seed through late-stage), (2) Categorize by sub-segment and value chain position, (3) Map total funding raised and latest valuation for each, (4) Identify the most active investors in the space, (5) Analyze recent deal flow trends (deal count, round sizes, valuations by stage), (6) Spot white spaces and emerging sub-segments, (7) Create a visual market map organized by category with company logos/names.
|
|
804
|
+
|
|
805
|
+
### Options Strategy Analysis
|
|
806
|
+
**Skills:** alpha-vantage, scientific-visualization, matplotlib, sympy
|
|
807
|
+
|
|
808
|
+
Analyze an options strategy for {underlying}. Strategy: {strategy}. (1) Price each leg using Black-Scholes with current implied volatility, (2) Generate the payoff diagram at expiration, (3) Calculate max profit, max loss, and breakeven points, (4) Compute the Greeks (delta, gamma, theta, vega, rho) for the combined position, (5) Model P&L across a range of underlying prices and dates to expiration, (6) Compare with alternative strategies for the same thesis, (7) Assess the risk/reward profil...
|
|
809
|
+
|
|
810
|
+
### Debt & Credit Analysis
|
|
811
|
+
**Skills:** edgartools, xlsx, scientific-visualization, statistical-analysis
|
|
812
|
+
|
|
813
|
+
Perform a credit analysis on {company}. (1) Analyze the capital structure (all debt tranches, maturity profile, interest rates), (2) Calculate credit metrics: net debt/EBITDA, interest coverage, FCCR, (3) Assess free cash flow generation and debt service capacity, (4) Review covenant compliance and headroom, (5) Compare with credit rating agency criteria (Moody's/S&P), (6) Analyze refinancing risk and maturity wall, (7) Model stress scenarios for a {stress} downturn, (8) Assign a shadow credi...
|
|
814
|
+
|
|
815
|
+
### Activist Investor Campaign Analysis
|
|
816
|
+
**Skills:** edgartools, alpha-vantage, research-lookup, scientific-visualization
|
|
817
|
+
|
|
818
|
+
Analyze the activist campaign at {company} by {activist}. (1) Summarize the activist's stated thesis and demands, (2) Analyze the company's operational and financial underperformance vs peers, (3) Evaluate the proposed changes (board seats, M&A, capital allocation, management), (4) Model the financial impact of each proposed action, (5) Assess the likelihood of success based on ownership stake and board dynamics, (6) Analyze the stock price reaction and implied market expectations, (7) Recomm...
|
|
819
|
+
|
|
820
|
+
### Fund Economics & Formation Modeling
|
|
821
|
+
**Skills:** scientific-visualization, xlsx, what-if-oracle, matplotlib
|
|
822
|
+
|
|
823
|
+
Model the economics of a {fund_type} fund. Fund size: {fund_size}. (1) Set up the fee structure: management fee ({mgmt_fee}), carried interest ({carry}), preferred return ({pref}), (2) Model the GP commitment and fee offsets, (3) Project management fee income over the fund life, (4) Model carry distribution under European and American waterfall, (5) Calculate GP economics at various fund-level return scenarios (0.5x to 5x MOIC), (6) Analyze the breakeven for the GP, (7) Compare with market-st...
|
|
824
|
+
|
|
825
|
+
## Genomics and Transcriptomics
|
|
826
|
+
|
|
827
|
+
### Bulk RNA-seq Analysis
|
|
828
|
+
**Skills:** pydeseq2, scientific-visualization, kegg-database, reactome-database **[needs files]**
|
|
829
|
+
|
|
830
|
+
Analyze the uploaded RNA-seq count matrix. Perform: (1) Quality control and filtering of low-count genes, (2) Normalization with DESeq2, (3) Differential expression analysis between {comparison}, (4) Volcano plot and MA plot, (5) Gene ontology and pathway enrichment analysis via KEGG and Reactome, (6) Heatmap of top 50 differentially expressed genes. Save all results and figures.
|
|
831
|
+
|
|
832
|
+
### Single-Cell RNA-seq Pipeline
|
|
833
|
+
**Skills:** scanpy, anndata, scientific-visualization, umap-learn **[needs files]**
|
|
834
|
+
|
|
835
|
+
Run a complete single-cell RNA-seq analysis pipeline on the uploaded count matrix. (1) QC filtering (mitochondrial %, gene counts, UMIs), (2) Normalization and log-transformation, (3) Highly variable gene selection, (4) PCA and batch correction if needed, (5) UMAP embedding, (6) Leiden clustering, (7) Marker gene identification, (8) Cell type annotation using known markers for {tissue}. Save the annotated AnnData object.
|
|
836
|
+
|
|
837
|
+
### Variant Calling & Annotation
|
|
838
|
+
**Skills:** pysam, gnomad-database, clinvar-database, ensembl-database **[needs files]**
|
|
839
|
+
|
|
840
|
+
Process the uploaded sequencing data for variant calling. (1) Align reads to {reference} reference genome, (2) Call SNPs and indels, (3) Filter variants by quality metrics (QUAL, DP, GQ), (4) Annotate variants with gene names, functional impact, and population frequencies from gnomAD, (5) Flag clinically relevant variants using ClinVar, (6) Generate a summary report.
|
|
841
|
+
|
|
842
|
+
### GWAS Analysis
|
|
843
|
+
**Skills:** gwas-database, polars-bio, scientific-visualization, matplotlib **[needs files]**
|
|
844
|
+
|
|
845
|
+
Perform a genome-wide association study analysis on the uploaded genotype and phenotype data. (1) QC: filter by MAF > {maf}, call rate, HWE, (2) Population stratification analysis with PCA, (3) Run association tests (logistic or linear regression) with covariates, (4) Generate Manhattan and QQ plots, (5) Identify significant loci (p < 5e-8), (6) Annotate lead SNPs with nearby genes and known associations.
|
|
846
|
+
|
|
847
|
+
### ChIP-seq Peak Calling
|
|
848
|
+
**Skills:** deeptools, jaspar-database, ensembl-database, scientific-visualization **[needs files]**
|
|
849
|
+
|
|
850
|
+
Analyze the uploaded ChIP-seq data for {factor}. (1) Assess read quality and mapping statistics, (2) Call peaks with appropriate parameters for {peak_type} peaks, (3) Annotate peaks relative to genomic features (promoters, enhancers, gene bodies), (4) Run motif enrichment analysis, (5) Generate coverage tracks and peak visualizations, (6) Identify target genes.
|
|
851
|
+
|
|
852
|
+
### ATAC-seq Chromatin Accessibility
|
|
853
|
+
**Skills:** deeptools, jaspar-database, scientific-visualization, pysam **[needs files]**
|
|
854
|
+
|
|
855
|
+
Analyze the uploaded ATAC-seq data. (1) QC: check fragment size distribution and TSS enrichment, (2) Call accessibility peaks, (3) Perform differential accessibility analysis between {comparison}, (4) Footprint analysis for transcription factor binding, (5) Annotate peaks with genomic features, (6) Integrate with gene expression data if provided, (7) Visualize genome browser tracks.
|
|
856
|
+
|
|
857
|
+
### DNA Methylation Analysis
|
|
858
|
+
**Skills:** scientific-visualization, statistical-analysis, ensembl-database, matplotlib **[needs files]**
|
|
859
|
+
|
|
860
|
+
Analyze the uploaded DNA methylation data ({data_type}). (1) QC and normalization, (2) Identify differentially methylated positions (DMPs) and regions (DMRs) between {comparison}, (3) Annotate DMRs with genes and CpG islands, (4) Perform pathway enrichment on associated genes, (5) Visualize methylation patterns across key regions, (6) Correlate with gene expression if available.
|
|
861
|
+
|
|
862
|
+
### Gene Set Enrichment Analysis
|
|
863
|
+
**Skills:** kegg-database, reactome-database, gget, scientific-visualization **[needs files]**
|
|
864
|
+
|
|
865
|
+
Perform gene set enrichment analysis on the uploaded gene list or ranked gene data. (1) Run over-representation analysis (ORA) against GO, KEGG, Reactome, (2) Run GSEA with ranked gene list if fold-changes provided, (3) Report enriched pathways with FDR-adjusted p-values, (4) Create dot plots and enrichment maps, (5) Identify key driver genes, (6) Summarize biological themes.
|
|
866
|
+
|
|
867
|
+
### Gene Regulatory Network
|
|
868
|
+
**Skills:** arboreto, networkx, jaspar-database, scientific-visualization **[needs files]**
|
|
869
|
+
|
|
870
|
+
Infer a gene regulatory network from the uploaded expression data. (1) Select candidate regulators (transcription factors from {organism}), (2) Apply network inference algorithms (GRNBoost2/GENIE3), (3) Score and threshold regulatory interactions, (4) Identify key hub regulators, (5) Validate against known interactions in the literature, (6) Visualize the top regulatory subnetwork.
|
|
871
|
+
|
|
872
|
+
### Genome Annotation
|
|
873
|
+
**Skills:** biopython, interpro-database, ensembl-database, scikit-bio **[needs files]**
|
|
874
|
+
|
|
875
|
+
Annotate the uploaded genome assembly. (1) Predict protein-coding genes with ab initio and homology-based methods, (2) Identify non-coding RNAs (tRNA, rRNA, miRNA), (3) Annotate repetitive elements, (4) Perform functional annotation with InterPro and GO, (5) Generate GFF3/GTF annotation files, (6) Compute assembly statistics (N50, BUSCO completeness).
|
|
876
|
+
|
|
877
|
+
### Comparative Genomics
|
|
878
|
+
**Skills:** biopython, etetoolkit, phylogenetics, ensembl-database
|
|
879
|
+
|
|
880
|
+
Perform comparative genomics analysis between {species}. (1) Identify orthologous genes, (2) Compute dN/dS ratios to detect positive selection, (3) Identify lineage-specific gene gains and losses, (4) Analyze synteny blocks, (5) Build a phylogenetic tree from conserved genes, (6) Identify rapidly evolving gene families. Visualize key results.
|
|
881
|
+
|
|
882
|
+
### Metagenomics Analysis
|
|
883
|
+
**Skills:** scikit-bio, kegg-database, scientific-visualization, statistical-analysis **[needs files]**
|
|
884
|
+
|
|
885
|
+
Analyze the uploaded metagenomic sequencing data. (1) QC and host read removal, (2) Taxonomic classification and profiling, (3) Alpha diversity (Shannon, Chao1) and beta diversity (Bray-Curtis, UniFrac), (4) Differential abundance testing between {comparison}, (5) Functional profiling (KEGG pathways, CAZymes), (6) Visualize community composition and diversity.
|
|
886
|
+
|
|
887
|
+
### RNA Velocity Analysis
|
|
888
|
+
**Skills:** scvelo, scanpy, scientific-visualization, anndata **[needs files]**
|
|
889
|
+
|
|
890
|
+
Perform RNA velocity analysis on the uploaded single-cell data. (1) Quantify spliced and unspliced counts, (2) Fit RNA velocity models (stochastic or dynamical), (3) Project velocity vectors onto the UMAP embedding, (4) Identify root and terminal cell states, (5) Compute latent time, (6) Identify driver genes for each lineage transition.
|
|
891
|
+
|
|
892
|
+
### Spatial Transcriptomics
|
|
893
|
+
**Skills:** scanpy, anndata, scientific-visualization, geopandas **[needs files]**
|
|
894
|
+
|
|
895
|
+
Analyze the uploaded spatial transcriptomics data ({platform}). (1) QC and normalization, (2) Identify spatially variable genes, (3) Cluster spots/cells and annotate tissue regions, (4) Map cell types using reference scRNA-seq if available, (5) Analyze spatial co-localization and communication patterns, (6) Visualize gene expression overlaid on tissue images.
|
|
896
|
+
|
|
897
|
+
### Variant Annotation & Interpretation
|
|
898
|
+
**Skills:** clinvar-database, gnomad-database, ensembl-database, gene-database **[needs files]**
|
|
899
|
+
|
|
900
|
+
Annotate and interpret the uploaded variant list (VCF or table). (1) Add functional annotations (missense, nonsense, splice-site), (2) Query population frequency from gnomAD, (3) Check ClinVar for known pathogenic variants, (4) Predict functional impact (CADD, PolyPhen, SIFT scores), (5) Flag variants in ACMG-actionable genes, (6) Prioritize variants relevant to {phenotype}.
|
|
901
|
+
|
|
902
|
+
### Phylogenetic Analysis
|
|
903
|
+
**Skills:** phylogenetics, biopython, etetoolkit **[needs files]**
|
|
904
|
+
|
|
905
|
+
Perform a phylogenetic analysis on the uploaded sequences. (1) Align sequences with an appropriate method, (2) Select the best evolutionary model, (3) Build a phylogenetic tree (ML or Bayesian), (4) Assess branch support (bootstrap), (5) Visualize and annotate the tree. Interpret the key evolutionary relationships.
|
|
906
|
+
|
|
907
|
+
### Gene Expression Atlas
|
|
908
|
+
**Skills:** gtex-database, geo-database, gget, scientific-visualization
|
|
909
|
+
|
|
910
|
+
Create a gene expression atlas for: {genes}. (1) Query GTEx for tissue-level expression patterns, (2) Query GEO/ArrayExpress for condition-specific data, (3) Generate tissue expression heatmaps, (4) Compare expression between {conditions} if specified, (5) Identify tissue-specific and ubiquitous genes, (6) Report isoform-level expression differences.
|
|
911
|
+
|
|
912
|
+
## Grant Writing
|
|
913
|
+
|
|
914
|
+
### Write a Specific Aim
|
|
915
|
+
**Skills:** scientific-writing, research-grants, writing
|
|
916
|
+
|
|
917
|
+
Draft a Specific Aim page for a grant proposal on: {topic}. Include: (1) opening paragraph establishing significance and knowledge gap, (2) overall objective and central hypothesis, (3) 2-3 specific aims with brief rationale and approach for each, (4) closing statement on expected impact. Target agency: {agency}
|
|
918
|
+
|
|
919
|
+
### Write a Research Plan
|
|
920
|
+
**Skills:** scientific-writing, research-grants, writing
|
|
921
|
+
|
|
922
|
+
Create a detailed research plan for investigating: {topic}. Include: (1) Background and rationale, (2) Specific hypotheses, (3) Experimental design and methods, (4) Expected outcomes and alternatives, (5) Timeline with milestones, (6) Required resources and personnel.
|
|
923
|
+
|
|
924
|
+
### Draft a Budget Justification
|
|
925
|
+
**Skills:** research-grants, writing
|
|
926
|
+
|
|
927
|
+
Draft a budget justification narrative for a grant proposal on: {topic}. Cover personnel (PI, postdocs, students), equipment, supplies, travel, and other costs. Justify each line item in terms of the proposed research. Total budget target: {budget}
|
|
928
|
+
|
|
929
|
+
### Write a Biosketch
|
|
930
|
+
**Skills:** research-grants, writing, scientific-writing
|
|
931
|
+
|
|
932
|
+
Draft a biosketch for {name} in the context of a {agency} proposal on {topic}. Include: (1) Personal statement connecting expertise to the project, (2) Positions, scientific appointments, and honors, (3) Contributions to science (up to 5 key accomplishments with up to 4 publications each), (4) Research support (current and completed). Follow {agency} format guidelines.
|
|
933
|
+
|
|
934
|
+
### Write Significance Section
|
|
935
|
+
**Skills:** scientific-writing, research-grants, literature-review, writing
|
|
936
|
+
|
|
937
|
+
Write the Significance section for a grant proposal on: {topic}. (1) Establish the burden/importance of the problem, (2) Explain how the proposed research will fill a critical gap, (3) Describe the expected impact on the field, (4) Cite key statistics and prior findings that motivate the work. Write persuasively and cite evidence.
|
|
938
|
+
|
|
939
|
+
### Write Innovation Section
|
|
940
|
+
**Skills:** scientific-writing, research-grants, writing
|
|
941
|
+
|
|
942
|
+
Write the Innovation section for a grant proposal on: {topic}. Describe: (1) How the approach differs from existing methods, (2) New technologies or techniques being applied, (3) Novel conceptual framework or hypothesis, (4) Why this innovation matters for advancing the field. Be specific and avoid generic claims.
|
|
943
|
+
|
|
944
|
+
### Write Research Strategy / Approach
|
|
945
|
+
**Skills:** scientific-writing, research-grants, writing
|
|
946
|
+
|
|
947
|
+
Write the Approach/Research Strategy section for a grant on: {topic}. For each aim: (1) Rationale, (2) Preliminary data supporting feasibility, (3) Detailed experimental design, (4) Expected results and interpretation, (5) Potential pitfalls and alternative approaches, (6) Timeline. Write for {agency} format.
|
|
948
|
+
|
|
949
|
+
### Create a Project Timeline
|
|
950
|
+
**Skills:** scientific-visualization, matplotlib, markdown-mermaid-writing
|
|
951
|
+
|
|
952
|
+
Create a detailed project timeline for a {duration} project on: {topic}. Include: (1) Gantt chart showing all tasks across aims, (2) Milestones and deliverables, (3) Go/no-go decision points, (4) Personnel assignments, (5) Dependencies between tasks. Visualize as a Gantt chart.
|
|
953
|
+
|
|
954
|
+
### Write a Data Management Plan
|
|
955
|
+
**Skills:** scientific-writing, research-grants, writing
|
|
956
|
+
|
|
957
|
+
Write a Data Management Plan for a {agency} grant on: {topic}. Cover: (1) Types of data generated, (2) Data standards and formats, (3) Access and sharing policies, (4) Archiving and preservation plan, (5) Privacy and security considerations, (6) Roles and responsibilities. Follow {agency} DMS policy requirements.
|
|
958
|
+
|
|
959
|
+
### Write Broader Impacts
|
|
960
|
+
**Skills:** scientific-writing, research-grants, writing
|
|
961
|
+
|
|
962
|
+
Write a Broader Impacts section (NSF) or Dissemination Plan for a proposal on: {topic}. Include: (1) Educational and training activities, (2) Plans for broadening participation (underrepresented groups), (3) Public engagement and outreach, (4) Potential societal benefits, (5) Plans for open-access publication and data sharing.
|
|
963
|
+
|
|
964
|
+
### Risk Mitigation Plan
|
|
965
|
+
**Skills:** scientific-writing, what-if-oracle, writing
|
|
966
|
+
|
|
967
|
+
Create a risk mitigation plan for a research project on: {topic}. (1) Identify key scientific and technical risks for each aim, (2) Rate each risk by likelihood and impact, (3) Describe mitigation strategies and alternative approaches, (4) Identify early indicators of problems, (5) Create a risk matrix visualization.
|
|
968
|
+
|
|
969
|
+
### Facilities & Equipment
|
|
970
|
+
**Skills:** research-grants, writing
|
|
971
|
+
|
|
972
|
+
Write a Facilities, Equipment, and Other Resources section for a grant on: {topic} at {institution}. Describe: (1) Laboratory space and equipment, (2) Computational resources, (3) Core facilities and shared instruments, (4) Animal/clinical facilities if applicable, (5) Institutional support and collaborations, (6) Office space and meeting rooms.
|
|
973
|
+
|
|
974
|
+
## Literature and Search
|
|
975
|
+
|
|
976
|
+
### Literature Search
|
|
977
|
+
**Skills:** literature-review, research-lookup, openalex-database
|
|
978
|
+
|
|
979
|
+
Search the literature on the topic: {topic}. Find the most relevant and highly cited papers, summarize key findings from each, identify major themes and consensus, note any controversies, and highlight gaps in the current knowledge. Provide a structured bibliography.
|
|
980
|
+
|
|
981
|
+
### Summarize a Paper
|
|
982
|
+
**Skills:** scientific-critical-thinking **[needs files]**
|
|
983
|
+
|
|
984
|
+
Provide a structured summary of the uploaded paper: (1) Research objective and hypothesis, (2) Study design and methods, (3) Key findings and results, (4) Limitations acknowledged, (5) Conclusions and significance, (6) How this fits into the broader field. Keep it concise but thorough.
|
|
985
|
+
|
|
986
|
+
### Compare Papers
|
|
987
|
+
**Skills:** scientific-critical-thinking, peer-review **[needs files]**
|
|
988
|
+
|
|
989
|
+
Compare and contrast the uploaded papers. Create a structured comparison covering: (1) Research questions and objectives, (2) Methodological approaches, (3) Key findings — agreements and contradictions, (4) Strengths and weaknesses of each, (5) Which provides stronger evidence and why. Present as a comparative table where appropriate.
|
|
990
|
+
|
|
991
|
+
### Research Landscape Map
|
|
992
|
+
**Skills:** literature-review, research-lookup, markdown-mermaid-writing, openalex-database
|
|
993
|
+
|
|
994
|
+
Create a research landscape map for the field of: {topic}. Identify the major research themes, key research groups and labs, landmark papers, current trends, emerging directions, and funding patterns. Visualize the landscape as a structured diagram or concept map.
|
|
995
|
+
|
|
996
|
+
### Systematic Review Protocol
|
|
997
|
+
**Skills:** literature-review, pubmed-database, scientific-writing, writing
|
|
998
|
+
|
|
999
|
+
Design a systematic review protocol for: {question}. (1) Formulate the PICO question, (2) Define inclusion/exclusion criteria, (3) Create search strategies for PubMed, Web of Science, and Scopus, (4) Describe screening and data extraction procedures, (5) Plan quality assessment (e.g., Cochrane RoB, Newcastle-Ottawa), (6) Outline the analysis plan. Follow PRISMA guidelines.
|
|
1000
|
+
|
|
1001
|
+
### Citation Analysis
|
|
1002
|
+
**Skills:** openalex-database, scholar-evaluation, research-lookup, networkx
|
|
1003
|
+
|
|
1004
|
+
Perform a citation analysis on the topic: {topic}. (1) Identify the most cited papers and their citation trajectories, (2) Map citation networks between key papers, (3) Identify citation bursts (rapidly emerging topics), (4) Calculate h-index and other metrics for key authors, (5) Visualize the citation network.
|
|
1005
|
+
|
|
1006
|
+
### Find Public Datasets
|
|
1007
|
+
**Skills:** research-lookup, get-available-resources, geo-database
|
|
1008
|
+
|
|
1009
|
+
Find publicly available datasets relevant to: {topic}. Search across major repositories (GEO, ArrayExpress, TCGA, UK Biobank, Data Commons, Zenodo, Figshare, etc.). For each dataset: (1) describe its contents, (2) report sample size, (3) note the data format, (4) provide access URL, (5) list any usage restrictions.
|
|
1010
|
+
|
|
1011
|
+
### Track Research Trends
|
|
1012
|
+
**Skills:** openalex-database, research-lookup, scientific-visualization, matplotlib
|
|
1013
|
+
|
|
1014
|
+
Analyze research trends in the field of: {field}. (1) Plot publication volume over the past {years} years, (2) Identify the fastest-growing subtopics, (3) Map geographic distribution of research output, (4) Identify top-publishing institutions and authors, (5) Highlight emerging methodologies, (6) Project near-future trends.
|
|
1015
|
+
|
|
1016
|
+
### Find Recent Preprints
|
|
1017
|
+
**Skills:** biorxiv-database, arxiv-database, research-lookup
|
|
1018
|
+
|
|
1019
|
+
Search for recent preprints on: {topic}. Check bioRxiv, medRxiv, arXiv, and other relevant preprint servers. (1) List the most relevant preprints from the past {months} months, (2) Summarize each paper's main finding in 2-3 sentences, (3) Note which have been peer-reviewed or published, (4) Highlight any contradictory findings.
|
|
1020
|
+
|
|
1021
|
+
### Patent Landscape
|
|
1022
|
+
**Skills:** uspto-database, research-lookup, market-research-reports
|
|
1023
|
+
|
|
1024
|
+
Analyze the patent landscape for: {technology}. (1) Search USPTO and major patent databases, (2) Identify key patent holders and filing trends, (3) Map patent families and citations, (4) Identify freedom-to-operate concerns, (5) Highlight recent filings and emerging IP areas, (6) Summarize the competitive IP landscape.
|
|
1025
|
+
|
|
1026
|
+
### Compare Methods
|
|
1027
|
+
**Skills:** literature-review, research-lookup, scientific-critical-thinking
|
|
1028
|
+
|
|
1029
|
+
Systematically compare methods for: {task}. (1) Identify the main methods used in the literature, (2) Compare on criteria: accuracy, computational cost, ease of use, assumptions, sample size requirements, (3) Summarize which method is best under which conditions, (4) Create a comparison table, (5) Provide recommendations.
|
|
1030
|
+
|
|
1031
|
+
## Machine Learning and AI
|
|
1032
|
+
|
|
1033
|
+
### Build a Classifier
|
|
1034
|
+
**Skills:** scikit-learn, shap, scientific-visualization, exploratory-data-analysis **[needs files]**
|
|
1035
|
+
|
|
1036
|
+
Build a classification model to predict {target} from the uploaded data. (1) EDA and class balance analysis, (2) Feature engineering and selection, (3) Train multiple models (logistic regression, random forest, XGBoost, SVM), (4) Evaluate: accuracy, precision, recall, F1, AUC-ROC, (5) Analyze with SHAP for interpretability, (6) Tune the best model and report final performance.
|
|
1037
|
+
|
|
1038
|
+
### NLP Text Analysis
|
|
1039
|
+
**Skills:** transformers, scikit-learn, scientific-visualization, pytorch-lightning **[needs files]**
|
|
1040
|
+
|
|
1041
|
+
Perform NLP analysis on the uploaded text data. Task: {task}. (1) Preprocess text (tokenize, clean, handle encoding), (2) Apply {task}: train a fine-tuned model or use pretrained transformers, (3) Evaluate on held-out test set, (4) Analyze errors and edge cases, (5) Visualize results (confusion matrix, attention maps, embedding clusters), (6) Export predictions.
|
|
1042
|
+
|
|
1043
|
+
### Image Classification
|
|
1044
|
+
**Skills:** pytorch-lightning, scikit-learn, scientific-visualization **[needs files]**
|
|
1045
|
+
|
|
1046
|
+
Build an image classifier for: {classes} using the uploaded image dataset. (1) Explore and augment the dataset, (2) Apply transfer learning from {backbone}, (3) Fine-tune with appropriate learning rate schedule, (4) Evaluate: accuracy, per-class precision/recall, confusion matrix, (5) Visualize Grad-CAM attention maps, (6) Report performance and failure cases.
|
|
1047
|
+
|
|
1048
|
+
### Anomaly Detection
|
|
1049
|
+
**Skills:** scikit-learn, scientific-visualization, exploratory-data-analysis, pytorch-lightning **[needs files]**
|
|
1050
|
+
|
|
1051
|
+
Build an anomaly detection system for the uploaded data. (1) Visualize data distribution, (2) Apply multiple methods (Isolation Forest, Local Outlier Factor, Autoencoder, DBSCAN), (3) Compare detected anomalies across methods, (4) Analyze the characteristics of anomalous points, (5) Tune detection thresholds based on {constraint}, (6) Report anomaly scores and flagged records.
|
|
1052
|
+
|
|
1053
|
+
### Feature Engineering
|
|
1054
|
+
**Skills:** scikit-learn, shap, exploratory-data-analysis, polars **[needs files]**
|
|
1055
|
+
|
|
1056
|
+
Perform feature engineering on the uploaded dataset for predicting {target}. (1) Analyze existing features (distributions, correlations, mutual information), (2) Create interaction features, polynomial features, and domain-specific features, (3) Handle categorical variables (encoding strategies), (4) Apply dimensionality reduction if high-dimensional, (5) Select top features using multiple methods (LASSO, RF importance, Boruta), (6) Report feature importance rankings.
|
|
1057
|
+
|
|
1058
|
+
### Hyperparameter Tuning
|
|
1059
|
+
**Skills:** scikit-learn, scientific-visualization, matplotlib **[needs files]**
|
|
1060
|
+
|
|
1061
|
+
Optimize hyperparameters for the {model} model on the uploaded data. (1) Define the search space for key hyperparameters, (2) Run {method} with {n_trials} trials, (3) Use {n_folds}-fold cross-validation for evaluation, (4) Analyze hyperparameter importance and interactions, (5) Report the optimal configuration and its performance, (6) Visualize the optimization landscape.
|
|
1062
|
+
|
|
1063
|
+
### Model Interpretability
|
|
1064
|
+
**Skills:** shap, scikit-learn, scientific-visualization, matplotlib **[needs files]**
|
|
1065
|
+
|
|
1066
|
+
Interpret the uploaded trained model's predictions. (1) Compute global SHAP values for all features, (2) Generate SHAP summary, dependence, and force plots, (3) Apply LIME to {n_samples} individual predictions, (4) Create partial dependence plots for top features, (5) Analyze feature interactions, (6) Identify prediction patterns and potential biases. Report key insights.
|
|
1067
|
+
|
|
1068
|
+
### Transfer Learning
|
|
1069
|
+
**Skills:** pytorch-lightning, transformers, scikit-learn, scientific-visualization
|
|
1070
|
+
|
|
1071
|
+
Apply transfer learning for: {task} using {source_model}. (1) Load the pretrained model and analyze layer representations, (2) Freeze appropriate layers, (3) Add task-specific head for {task}, (4) Fine-tune with learning rate warmup and decay, (5) Evaluate on the target domain vs training from scratch, (6) Analyze where transfer helps and where it hurts.
|
|
1072
|
+
|
|
1073
|
+
### Graph Neural Network
|
|
1074
|
+
**Skills:** torch-geometric, pytorch-lightning, scientific-visualization, networkx **[needs files]**
|
|
1075
|
+
|
|
1076
|
+
Build a graph neural network for: {task} on the uploaded graph data. (1) Construct the graph from the data, (2) Select GNN architecture (GCN, GAT, GraphSAGE, GIN), (3) Train with appropriate loss function, (4) Evaluate: {metrics}, (5) Analyze learned node embeddings, (6) Visualize attention weights or message passing. Compare with non-graph baselines.
|
|
1077
|
+
|
|
1078
|
+
### Build a Generative Model
|
|
1079
|
+
**Skills:** pytorch-lightning, scientific-visualization, matplotlib
|
|
1080
|
+
|
|
1081
|
+
Build a generative model to generate: {data_type}. (1) Analyze the training data distribution, (2) Choose architecture: {architecture}, (3) Train with appropriate loss and regularization, (4) Evaluate generation quality (FID, IS, or domain-specific metrics), (5) Generate {n_samples} samples, (6) Analyze interpolation in latent space and mode coverage.
|
|
1082
|
+
|
|
1083
|
+
### Reinforcement Learning
|
|
1084
|
+
**Skills:** stable-baselines3, pufferlib, scientific-visualization, matplotlib
|
|
1085
|
+
|
|
1086
|
+
Train an RL agent for: {environment}. (1) Define the state space, action space, and reward function, (2) Select algorithm: {algorithm}, (3) Train with appropriate hyperparameters, (4) Plot learning curves (reward, episode length), (5) Evaluate the trained policy, (6) Visualize the agent's behavior and decision-making.
|
|
1087
|
+
|
|
1088
|
+
### Model Comparison & Selection
|
|
1089
|
+
**Skills:** scikit-learn, scientific-visualization, shap, statistical-analysis **[needs files]**
|
|
1090
|
+
|
|
1091
|
+
Compare ML models for predicting {target} from the uploaded data. Models to compare: {models}. (1) Apply identical preprocessing and splits, (2) Train all models with cross-validation, (3) Compare on multiple metrics (accuracy, AUC, F1, calibration), (4) Statistical comparison (paired t-test, Friedman), (5) Analyze computational cost, (6) Generate a comprehensive comparison table and recommend the best model.
|
|
1092
|
+
|
|
1093
|
+
### Dataset & Model Bias Audit
|
|
1094
|
+
**Skills:** scikit-learn, shap, scientific-visualization, statistical-analysis **[needs files]**
|
|
1095
|
+
|
|
1096
|
+
Audit the uploaded dataset and model for bias and fairness. Protected attributes: {attributes}. (1) Analyze representation in training data, (2) Compute demographic parity and equalized odds, (3) Calculate disparate impact ratio, (4) Analyze prediction errors by subgroup, (5) Apply bias mitigation (reweighting, adversarial debiasing) if needed, (6) Report fairness metrics before and after mitigation.
|
|
1097
|
+
|
|
1098
|
+
### Build a Recommendation System
|
|
1099
|
+
**Skills:** scikit-learn, pytorch-lightning, scientific-visualization, polars **[needs files]**
|
|
1100
|
+
|
|
1101
|
+
Build a recommendation system from the uploaded {data_type} data. (1) EDA: analyze user-item interaction patterns, (2) Implement {approach} approach, (3) Handle cold-start problem, (4) Evaluate: precision@k, recall@k, NDCG, MAP, (5) Analyze recommendation diversity and coverage, (6) Generate top-N recommendations for sample users.
|
|
1102
|
+
|
|
1103
|
+
### Federated Learning Design
|
|
1104
|
+
**Skills:** pytorch-lightning, scikit-learn, scientific-visualization
|
|
1105
|
+
|
|
1106
|
+
Design a federated learning system for: {task}. (1) Define the data partitioning strategy ({partition}), (2) Select the FL algorithm (FedAvg, FedProx, FedBN), (3) Design the aggregation protocol, (4) Add privacy mechanisms (differential privacy with epsilon = {epsilon}), (5) Simulate training across {n_clients} clients, (6) Compare with centralized training baseline. Report convergence and accuracy.
|
|
1107
|
+
|
|
1108
|
+
## Materials Science
|
|
1109
|
+
|
|
1110
|
+
### Crystal Structure Prediction
|
|
1111
|
+
**Skills:** pymatgen, scientific-visualization, matplotlib
|
|
1112
|
+
|
|
1113
|
+
Predict crystal structures for: {composition}. (1) Search existing structures in materials databases, (2) Generate candidate structures using substitution and prototype methods, (3) Optimize structures with DFT, (4) Evaluate formation energies and thermodynamic stability, (5) Construct the convex hull, (6) Identify the ground-state and low-energy polymorphs. Report space groups and lattice parameters.
|
|
1114
|
+
|
|
1115
|
+
### Phase Diagram Analysis
|
|
1116
|
+
**Skills:** pymatgen, sympy, matplotlib, scientific-visualization
|
|
1117
|
+
|
|
1118
|
+
Construct a phase diagram for the {system} system. (1) Collect thermodynamic data from literature and databases, (2) Calculate phase boundaries using Gibbs energy models, (3) Identify single-phase and multi-phase regions, (4) Mark invariant reactions (eutectic, peritectic, eutectoid), (5) Overlay experimental data if provided, (6) Visualize the complete phase diagram with labels.
|
|
1119
|
+
|
|
1120
|
+
### Mechanical Property Prediction
|
|
1121
|
+
**Skills:** pymatgen, scientific-visualization, matplotlib
|
|
1122
|
+
|
|
1123
|
+
Predict the mechanical properties of: {material}. (1) Calculate elastic constants (C_ij tensor), (2) Derive bulk modulus, shear modulus, and Young's modulus, (3) Estimate Vickers hardness, (4) Analyze anisotropy (Zener ratio), (5) Compare with known materials of similar composition, (6) Assess Pugh's ratio (ductile vs brittle behavior).
|
|
1124
|
+
|
|
1125
|
+
### High-Throughput Materials Screening
|
|
1126
|
+
**Skills:** pymatgen, pymoo, scientific-visualization, research-lookup
|
|
1127
|
+
|
|
1128
|
+
Screen materials for: {application}. Target properties: {properties}. (1) Query materials databases (Materials Project, AFLOW, OQMD), (2) Filter by target property ranges, (3) Rank candidates by a multi-objective score, (4) Check stability (formation energy, hull distance), (5) Assess synthesizability from literature, (6) Report top 20 candidates with all relevant properties.
|
|
1129
|
+
|
|
1130
|
+
### Defect Analysis
|
|
1131
|
+
**Skills:** pymatgen, sympy, matplotlib, scientific-visualization
|
|
1132
|
+
|
|
1133
|
+
Analyze defects in: {material}. (1) Calculate formation energies for common point defects (vacancies, interstitials, antisites), (2) Determine charge state transition levels, (3) Compute defect concentrations at {temperature}, (4) Analyze defect migration barriers, (5) Predict the dominant defect type under various chemical potentials, (6) Discuss implications for material properties.
|
|
1134
|
+
|
|
1135
|
+
### Alloy Design
|
|
1136
|
+
**Skills:** pymatgen, research-lookup, scientific-writing, what-if-oracle
|
|
1137
|
+
|
|
1138
|
+
Design an alloy for: {application}. Requirements: {requirements}. (1) Propose candidate composition ranges based on CALPHAD and literature, (2) Predict phase stability and microstructure, (3) Estimate mechanical properties (yield strength, hardness, ductility), (4) Assess corrosion resistance, (5) Check processability (castability, weldability), (6) Recommend top 3 compositions for experimental validation.
|
|
1139
|
+
|
|
1140
|
+
### Battery Material Analysis
|
|
1141
|
+
**Skills:** pymatgen, scientific-visualization, matplotlib, research-lookup
|
|
1142
|
+
|
|
1143
|
+
Evaluate {material} as a {component} for batteries. (1) Calculate voltage profile and theoretical capacity, (2) Analyze structural stability during cycling (volume change), (3) Compute ion migration barriers, (4) Assess electronic conductivity, (5) Compare with state-of-the-art materials, (6) Identify potential degradation mechanisms. Report all relevant electrochemical properties.
|
|
1144
|
+
|
|
1145
|
+
### Thermal Conductivity Modeling
|
|
1146
|
+
**Skills:** pymatgen, sympy, matplotlib, scientific-visualization
|
|
1147
|
+
|
|
1148
|
+
Model the thermal conductivity of: {material}. (1) Calculate phonon dispersion relations, (2) Compute phonon density of states, (3) Estimate lattice thermal conductivity using Boltzmann transport, (4) Analyze phonon scattering mechanisms, (5) Predict temperature dependence from {t_min} to {t_max} K, (6) Compare with experimental data if available.
|
|
1149
|
+
|
|
1150
|
+
### Surface Energy Analysis
|
|
1151
|
+
**Skills:** pymatgen, matplotlib, scientific-visualization
|
|
1152
|
+
|
|
1153
|
+
Calculate surface energies for: {material}. (1) Identify low-index surfaces, (2) Construct surface slab models, (3) Calculate surface energy for each facet, (4) Construct Wulff shape (equilibrium crystal morphology), (5) Analyze surface terminations and reconstructions, (6) Predict adsorption energies for {adsorbate} if specified.
|
|
1154
|
+
|
|
1155
|
+
### Polymer Property Prediction
|
|
1156
|
+
**Skills:** rdkit, research-lookup, scientific-visualization, deepchem
|
|
1157
|
+
|
|
1158
|
+
Predict properties for the polymer: {polymer}. (1) Calculate glass transition temperature (Tg), (2) Predict thermal decomposition temperature, (3) Estimate mechanical properties (modulus, tensile strength), (4) Predict gas permeability (O2, N2, CO2), (5) Assess solubility parameters, (6) Compare with experimental data and similar polymers in the literature.
|
|
1159
|
+
|
|
1160
|
+
### Electronic Band Structure
|
|
1161
|
+
**Skills:** pymatgen, matplotlib, scientific-visualization
|
|
1162
|
+
|
|
1163
|
+
Calculate the electronic band structure for: {material}. (1) Optimize the crystal structure, (2) Compute bands along the standard high-symmetry k-path, (3) Calculate total and projected density of states, (4) Determine band gap (direct/indirect), (5) Analyze orbital character of bands near the Fermi level, (6) Compute effective masses if semiconducting.
|
|
1164
|
+
|
|
1165
|
+
### Materials Science Literature Review
|
|
1166
|
+
**Skills:** literature-review, research-lookup, scientific-writing, openalex-database
|
|
1167
|
+
|
|
1168
|
+
Conduct a comprehensive literature review on: {topic} in materials science. (1) Search recent publications (last {years} years), (2) Identify key synthesis methods and characterization techniques, (3) Compile reported property values in a comparison table, (4) Identify trends and discrepancies between studies, (5) Highlight open challenges, (6) Suggest promising research directions.
|
|
1169
|
+
|
|
1170
|
+
## Mathematics and Optimization
|
|
1171
|
+
|
|
1172
|
+
### Solve Differential Equations
|
|
1173
|
+
**Skills:** sympy, matplotlib, scientific-visualization
|
|
1174
|
+
|
|
1175
|
+
Solve the differential equation(s): {equation}. (1) Classify the equation (ODE/PDE, order, linearity), (2) Attempt analytical solution if possible, (3) Implement numerical solution with appropriate methods, (4) Apply boundary/initial conditions: {conditions}, (5) Analyze solution stability and behavior, (6) Visualize the solution space and phase portraits.
|
|
1176
|
+
|
|
1177
|
+
### Solve an Optimization Problem
|
|
1178
|
+
**Skills:** pymoo, sympy, scientific-visualization, matplotlib
|
|
1179
|
+
|
|
1180
|
+
Solve the optimization problem: {objective} subject to constraints: {constraints}. (1) Classify the problem (LP, QP, MILP, nonlinear, multi-objective), (2) Select appropriate solver, (3) Find the optimal solution, (4) Perform sensitivity analysis on key parameters, (5) Analyze the Pareto front if multi-objective, (6) Visualize the feasible region and optimal point.
|
|
1181
|
+
|
|
1182
|
+
### Bayesian Inference
|
|
1183
|
+
**Skills:** pymc, scientific-visualization, matplotlib, statsmodels
|
|
1184
|
+
|
|
1185
|
+
Perform Bayesian inference for: {model}. Prior assumptions: {priors}. (1) Specify the generative model and likelihood, (2) Define prior distributions, (3) Run MCMC sampling (NUTS), (4) Check convergence (trace plots, R-hat, ESS), (5) Report posterior distributions and 95% HDIs, (6) Compare models using WAIC/LOO, (7) Generate posterior predictive checks.
|
|
1186
|
+
|
|
1187
|
+
### Monte Carlo Simulation
|
|
1188
|
+
**Skills:** pymc, matplotlib, scientific-visualization, statistical-analysis
|
|
1189
|
+
|
|
1190
|
+
Design and run a Monte Carlo simulation for: {problem}. (1) Define the random variables and their distributions, (2) Specify the model/function to evaluate, (3) Run {n_samples} samples, (4) Estimate the quantity of interest with confidence intervals, (5) Analyze convergence rate, (6) Perform variance reduction if needed (importance sampling, antithetic variables). Visualize the distribution of results.
|
|
1191
|
+
|
|
1192
|
+
### Graph Theory Analysis
|
|
1193
|
+
**Skills:** networkx, scientific-visualization, matplotlib, plotly **[needs files]**
|
|
1194
|
+
|
|
1195
|
+
Analyze the uploaded graph/network. (1) Compute basic properties (|V|, |E|, density, diameter), (2) Run graph algorithms: {algorithms}, (3) Detect communities/components, (4) Calculate centrality measures, (5) Test graph properties (planarity, bipartiteness, connectivity), (6) Solve optimization problems on the graph if specified. Visualize with appropriate layout.
|
|
1196
|
+
|
|
1197
|
+
### Symbolic Computation
|
|
1198
|
+
**Skills:** sympy, matplotlib, scientific-visualization
|
|
1199
|
+
|
|
1200
|
+
Perform symbolic computation for: {expression}. (1) Simplify the expression, (2) Perform requested operations: {operations}, (3) Verify results numerically, (4) Provide step-by-step derivation, (5) Generate LaTeX output, (6) Plot symbolic functions if they represent curves or surfaces.
|
|
1201
|
+
|
|
1202
|
+
### Numerical Methods Implementation
|
|
1203
|
+
**Skills:** sympy, matplotlib, scientific-visualization, matlab
|
|
1204
|
+
|
|
1205
|
+
Implement numerical methods for: {problem}. (1) Implement {methods} algorithms, (2) Analyze convergence rate and order, (3) Compare accuracy vs computational cost, (4) Test on benchmark problems, (5) Analyze stability and error propagation, (6) Visualize convergence and error plots. Provide clean, documented code.
|
|
1206
|
+
|
|
1207
|
+
### Stochastic Process Modeling
|
|
1208
|
+
**Skills:** pymc, sympy, matplotlib, scientific-visualization
|
|
1209
|
+
|
|
1210
|
+
Model the stochastic process: {process}. (1) Define the state space and transition rules, (2) Derive key properties analytically (mean, variance, stationary distribution), (3) Simulate sample paths, (4) Estimate parameters from data if provided, (5) Compute hitting times and absorption probabilities, (6) Visualize sample paths and probability distributions.
|
|
1211
|
+
|
|
1212
|
+
### Game Theory Analysis
|
|
1213
|
+
**Skills:** sympy, scientific-visualization, matplotlib
|
|
1214
|
+
|
|
1215
|
+
Analyze the game: {game}. (1) Model as a normal-form or extensive-form game, (2) Find all pure strategy Nash equilibria, (3) Find mixed strategy Nash equilibria, (4) Analyze dominated strategies, (5) Compute Shapley values if coalitional game, (6) Simulate repeated play dynamics. Interpret the equilibria in context.
|
|
1216
|
+
|
|
1217
|
+
### Topological Data Analysis
|
|
1218
|
+
**Skills:** scikit-learn, scientific-visualization, matplotlib **[needs files]**
|
|
1219
|
+
|
|
1220
|
+
Apply topological data analysis to the uploaded dataset. (1) Build a filtration (Vietoris-Rips or alpha complex), (2) Compute persistent homology (H0, H1, H2), (3) Generate persistence diagrams and barcodes, (4) Identify significant topological features (loops, voids, connected components), (5) Compare persistence landscapes between groups if applicable, (6) Interpret topological features in the data context.
|
|
1221
|
+
|
|
1222
|
+
### Fourier Analysis
|
|
1223
|
+
**Skills:** matplotlib, scientific-visualization, sympy **[needs files]**
|
|
1224
|
+
|
|
1225
|
+
Perform Fourier analysis on the uploaded signal/data. (1) Compute the FFT and power spectrum, (2) Identify dominant frequencies and their amplitudes, (3) Apply windowing (Hann, Hamming) to reduce spectral leakage, (4) Generate spectrogram for time-frequency analysis, (5) Filter the signal: {filter_spec}, (6) Compare original and filtered signals. Report all significant frequency components.
|
|
1226
|
+
|
|
1227
|
+
### Dynamical Systems Analysis
|
|
1228
|
+
**Skills:** sympy, matplotlib, scientific-visualization
|
|
1229
|
+
|
|
1230
|
+
Analyze the dynamical system: {system}. (1) Find all equilibrium points, (2) Linearize and classify stability (eigenvalue analysis), (3) Generate phase portraits, (4) Identify bifurcations as {parameter} varies, (5) Construct bifurcation diagrams, (6) Compute Lyapunov exponents to detect chaos, (7) Visualize attractors and basins of attraction.
|
|
1231
|
+
|
|
1232
|
+
## Neuroscience
|
|
1233
|
+
|
|
1234
|
+
### EEG Signal Analysis
|
|
1235
|
+
**Skills:** neurokit2, matplotlib, scientific-visualization, statistical-analysis **[needs files]**
|
|
1236
|
+
|
|
1237
|
+
Analyze the uploaded EEG data. (1) Preprocess: filter ({freq_range} Hz), re-reference, artifact rejection (ICA for eye/muscle), (2) Compute power spectral density for standard bands (delta, theta, alpha, beta, gamma), (3) Analyze event-related potentials (ERPs) for {events}, (4) Compute topographic maps, (5) Perform time-frequency analysis, (6) Run statistical comparisons between conditions.
|
|
1238
|
+
|
|
1239
|
+
### fMRI Analysis Pipeline
|
|
1240
|
+
**Skills:** pydicom, matplotlib, scientific-visualization, statistical-analysis **[needs files]**
|
|
1241
|
+
|
|
1242
|
+
Analyze the uploaded fMRI data. (1) Preprocessing: motion correction, slice timing, spatial normalization to MNI, smoothing ({fwhm} mm FWHM), (2) First-level GLM for task contrasts: {contrasts}, (3) Group-level analysis (one-sample or two-sample t-test), (4) Cluster-level thresholding (p < 0.001 voxel, p < 0.05 cluster), (5) Report activated regions with MNI coordinates, (6) Visualize activations on brain templates.
|
|
1243
|
+
|
|
1244
|
+
### Spike Sorting
|
|
1245
|
+
**Skills:** neuropixels-analysis, scientific-visualization, matplotlib **[needs files]**
|
|
1246
|
+
|
|
1247
|
+
Perform spike sorting on the uploaded electrophysiology data ({recording_type}). (1) Bandpass filter (300-3000 Hz) for spike band, (2) Detect spikes using threshold-based methods, (3) Extract waveform features (PCA), (4) Cluster spikes into putative single units, (5) Assess unit quality (ISI violations, SNR, isolation distance), (6) Visualize sorted units with average waveforms and autocorrelograms.
|
|
1248
|
+
|
|
1249
|
+
### Neural Decoding
|
|
1250
|
+
**Skills:** scikit-learn, pytorch-lightning, scientific-visualization, matplotlib **[needs files]**
|
|
1251
|
+
|
|
1252
|
+
Build a neural decoder to predict {variable} from the uploaded neural data. (1) Preprocess neural data (binning, smoothing, z-scoring), (2) Split data into training/test sets (preserving temporal structure), (3) Train decoders (logistic regression, SVM, LSTM), (4) Evaluate accuracy with cross-validation, (5) Analyze which neurons contribute most to decoding, (6) Generate confusion matrices and decoding accuracy over time.
|
|
1253
|
+
|
|
1254
|
+
### Brain Connectivity Analysis
|
|
1255
|
+
**Skills:** networkx, scientific-visualization, matplotlib, statistical-analysis **[needs files]**
|
|
1256
|
+
|
|
1257
|
+
Perform brain connectivity analysis on the uploaded data ({modality}). (1) Parcellate the brain using {atlas}, (2) Compute connectivity matrix (functional: correlation/coherence, structural: streamline counts), (3) Threshold and binarize the network, (4) Calculate graph metrics (degree, clustering, modularity, efficiency), (5) Identify hub regions, (6) Compare connectivity between {groups}. Visualize the connectome.
|
|
1258
|
+
|
|
1259
|
+
### Behavioral Data Analysis
|
|
1260
|
+
**Skills:** statistical-analysis, pymc, scientific-visualization, statsmodels **[needs files]**
|
|
1261
|
+
|
|
1262
|
+
Analyze the uploaded behavioral data from a {task_type} task. (1) Compute summary statistics per condition (accuracy, RT), (2) Fit reaction time distributions (ex-Gaussian, drift diffusion), (3) Analyze learning curves if applicable, (4) Fit computational models: {models}, (5) Compare models using AIC/BIC, (6) Correlate model parameters with {neural_data} if available.
|
|
1263
|
+
|
|
1264
|
+
### Calcium Imaging Analysis
|
|
1265
|
+
**Skills:** scientific-visualization, matplotlib, scikit-learn, statistical-analysis **[needs files]**
|
|
1266
|
+
|
|
1267
|
+
Analyze the uploaded calcium imaging data. (1) Motion correction and registration, (2) ROI segmentation (CNMF or Suite2p approach), (3) Extract fluorescence traces and deconvolve to estimate spike rates, (4) Identify place cells, time cells, or task-modulated neurons for {task}, (5) Compute tuning curves and selectivity indices, (6) Analyze population dynamics with dimensionality reduction.
|
|
1268
|
+
|
|
1269
|
+
### Neuropixels Data Processing
|
|
1270
|
+
**Skills:** neuropixels-analysis, scientific-visualization, matplotlib **[needs files]**
|
|
1271
|
+
|
|
1272
|
+
Process the uploaded Neuropixels recording. (1) Apply preprocessing (common average reference, bandpass filter), (2) Run Kilosort or spike sorting, (3) Curate sorted units (merge, split, remove noise), (4) Compute unit quality metrics (ISI violations, presence ratio, amplitude cutoff), (5) Extract good single units and multi-units, (6) Align spikes to behavioral events and compute PSTHs for {events}.
|
|
1273
|
+
|
|
1274
|
+
### Brain Atlas Mapping
|
|
1275
|
+
**Skills:** scientific-visualization, matplotlib, geopandas **[needs files]**
|
|
1276
|
+
|
|
1277
|
+
Map the uploaded neural recording locations or imaging data onto the {atlas} brain atlas. (1) Register electrode positions or imaging coordinates to atlas space, (2) Identify the brain region for each recording site, (3) Summarize data by brain region, (4) Create publication-quality brain maps showing: {data_type}, (5) Generate tables of region assignments, (6) Visualize on 2D flatmaps or 3D renderings.
|
|
1278
|
+
|
|
1279
|
+
### Computational Neuron Model
|
|
1280
|
+
**Skills:** sympy, matplotlib, scientific-visualization
|
|
1281
|
+
|
|
1282
|
+
Build a computational model of a {neuron_type} neuron. (1) Define the morphology (single-compartment or multi-compartment), (2) Set ion channel conductances based on {species} data, (3) Simulate responses to current injection ({protocol}), (4) Characterize firing properties (threshold, F-I curve, adaptation), (5) Analyze the contribution of each conductance, (6) Compare with experimental electrophysiology data if available.
|
|
1283
|
+
|
|
1284
|
+
### Psychophysics Analysis
|
|
1285
|
+
**Skills:** pymc, statistical-analysis, scientific-visualization, matplotlib **[needs files]**
|
|
1286
|
+
|
|
1287
|
+
Analyze the uploaded psychophysics data from a {task} task. (1) Fit psychometric functions (cumulative Gaussian, Weibull) to {conditions}, (2) Extract thresholds and slopes, (3) Compare thresholds across conditions using bootstrap, (4) Analyze response bias (criterion in SDT), (5) Compute d-prime and ROC if detection task, (6) Generate publication-quality psychometric curves with confidence intervals.
|
|
1288
|
+
|
|
1289
|
+
### Compare Neural & Artificial Networks
|
|
1290
|
+
**Skills:** pytorch-lightning, scikit-learn, scientific-visualization, matplotlib
|
|
1291
|
+
|
|
1292
|
+
Compare neural representations with deep network representations. (1) Extract neural population activity for {stimuli}, (2) Extract activations from {model} at multiple layers, (3) Compute representational similarity matrices (RSMs) for both, (4) Compare RSMs using RSA (Spearman correlation), (5) Identify which layer best matches neural data, (6) Analyze what stimulus features drive the match/mismatch.
|
|
1293
|
+
|
|
1294
|
+
## Paper and Manuscript
|
|
1295
|
+
|
|
1296
|
+
### Review a Paper
|
|
1297
|
+
**Skills:** peer-review, scientific-critical-thinking **[needs files]**
|
|
1298
|
+
|
|
1299
|
+
Review the uploaded paper. Provide a structured critical review covering: (1) Summary of key findings, (2) Methodology assessment, (3) Statistical rigor, (4) Strengths, (5) Limitations and weaknesses, (6) Constructive suggestions for improvement. Be thorough but fair.
|
|
1300
|
+
|
|
1301
|
+
### Write a Paper
|
|
1302
|
+
**Skills:** scientific-writing, writing, citation-management **[needs files]**
|
|
1303
|
+
|
|
1304
|
+
Using the uploaded data and results, draft a scientific manuscript with the following sections: Abstract, Introduction, Methods, Results, Discussion, and References. Follow standard scientific writing conventions. The paper should be on the topic of: {topic}
|
|
1305
|
+
|
|
1306
|
+
### Write a Review Article
|
|
1307
|
+
**Skills:** literature-review, scientific-writing, writing, research-lookup
|
|
1308
|
+
|
|
1309
|
+
Write a comprehensive review article on the topic: {topic}. Search the literature thoroughly, synthesize key findings across studies, identify consensus and controversies, highlight research gaps, and suggest future directions. Structure with clear thematic sections.
|
|
1310
|
+
|
|
1311
|
+
### Edit / Rewrite Manuscript
|
|
1312
|
+
**Skills:** scientific-writing, writing **[needs files]**
|
|
1313
|
+
|
|
1314
|
+
Improve the writing quality of the uploaded manuscript. Fix grammar and spelling, improve sentence clarity, strengthen transitions between sections, ensure consistent scientific tone, and tighten verbose passages. Preserve the original meaning and technical accuracy. Output the revised manuscript in full.
|
|
1315
|
+
|
|
1316
|
+
### Write a Rebuttal
|
|
1317
|
+
**Skills:** scientific-writing, writing, peer-review **[needs files]**
|
|
1318
|
+
|
|
1319
|
+
Draft a point-by-point rebuttal letter addressing the reviewer comments provided in the uploaded document. For each comment: (1) restate the reviewer's concern, (2) provide a respectful and detailed response, (3) describe any changes made to the manuscript. Be professional and thorough.
|
|
1320
|
+
|
|
1321
|
+
### Format for Journal
|
|
1322
|
+
**Skills:** scientific-writing, venue-templates, citation-management **[needs files]**
|
|
1323
|
+
|
|
1324
|
+
Reformat the uploaded manuscript to match the submission guidelines of {journal}. Adjust sections, headings, reference style, figure/table formatting, word limits, and any other journal-specific requirements. Look up the journal's author guidelines to ensure compliance.
|
|
1325
|
+
|
|
1326
|
+
### Write an Abstract
|
|
1327
|
+
**Skills:** scientific-writing, writing **[needs files]**
|
|
1328
|
+
|
|
1329
|
+
Write a structured abstract for the uploaded manuscript or based on these details: {details}. Include: (1) Background/objective (1-2 sentences), (2) Methods (2-3 sentences), (3) Results (2-3 sentences), (4) Conclusions (1-2 sentences). Keep within {word_limit} words. Ensure it stands alone and conveys the key message.
|
|
1330
|
+
|
|
1331
|
+
### Write a Cover Letter
|
|
1332
|
+
**Skills:** scientific-writing, writing, venue-templates **[needs files]**
|
|
1333
|
+
|
|
1334
|
+
Write a cover letter for submitting the uploaded manuscript to {journal}. Include: (1) brief summary of the study, (2) key findings and their significance, (3) why this journal is the right venue, (4) statement of originality and no concurrent submission, (5) suggested reviewers if applicable. Address to the editor-in-chief.
|
|
1335
|
+
|
|
1336
|
+
### Write a Methods Section
|
|
1337
|
+
**Skills:** scientific-writing, writing, protocolsio-integration **[needs files]**
|
|
1338
|
+
|
|
1339
|
+
Based on the uploaded protocol, data, or experimental notes, write a detailed Methods section suitable for a journal manuscript. Include: (1) Study design, (2) Materials and reagents, (3) Experimental procedures, (4) Data collection methods, (5) Statistical analysis approach. Ensure sufficient detail for reproducibility.
|
|
1340
|
+
|
|
1341
|
+
### Write a Results Section
|
|
1342
|
+
**Skills:** scientific-writing, writing, statistical-analysis **[needs files]**
|
|
1343
|
+
|
|
1344
|
+
Write a Results section based on the uploaded data, figures, and statistical outputs. Present findings in logical order without interpretation. For each result: (1) state the finding clearly, (2) reference the relevant figure/table, (3) report exact statistics (test statistic, p-value, CI, effect size). {focus}
|
|
1345
|
+
|
|
1346
|
+
### Write a Discussion Section
|
|
1347
|
+
**Skills:** scientific-writing, writing, literature-review, research-lookup **[needs files]**
|
|
1348
|
+
|
|
1349
|
+
Write a Discussion section for the uploaded manuscript or these results: {findings}. (1) Summarize main findings, (2) Interpret in context of existing literature, (3) Discuss mechanisms and implications, (4) Acknowledge limitations, (5) Suggest future directions. Search the literature to support interpretive claims.
|
|
1350
|
+
|
|
1351
|
+
### Write an Introduction
|
|
1352
|
+
**Skills:** scientific-writing, writing, literature-review, research-lookup
|
|
1353
|
+
|
|
1354
|
+
Write an Introduction section for a paper on: {topic}. Structure as: (1) Broad context and significance of the field, (2) Review of key prior work (cite real papers), (3) Identify the gap or unanswered question, (4) State the objective and approach of the current study, (5) Brief overview of what follows. Search the literature for accurate citations.
|
|
1355
|
+
|
|
1356
|
+
### Translate Manuscript
|
|
1357
|
+
**Skills:** scientific-writing, writing **[needs files]**
|
|
1358
|
+
|
|
1359
|
+
Translate the uploaded scientific manuscript from {source_lang} to {target_lang}. Preserve all technical terminology, maintain scientific precision, keep formatting and reference numbers intact, and ensure the translation reads naturally to a native speaker in the target language. Flag any terms where translation is ambiguous.
|
|
1360
|
+
|
|
1361
|
+
### Write Supplementary Materials
|
|
1362
|
+
**Skills:** scientific-writing, writing, scientific-visualization **[needs files]**
|
|
1363
|
+
|
|
1364
|
+
Prepare supplementary materials for the uploaded manuscript. Include: (1) Detailed methods not in the main text, (2) Supplementary figures with captions, (3) Supplementary tables, (4) Additional statistical analyses, (5) Raw data summaries. Number all items (Fig. S1, Table S1, etc.) and reference them from the main text.
|
|
1365
|
+
|
|
1366
|
+
### Check & Fix References
|
|
1367
|
+
**Skills:** citation-management, pyzotero, scientific-writing **[needs files]**
|
|
1368
|
+
|
|
1369
|
+
Review the references in the uploaded manuscript. (1) Verify each citation exists and is correctly attributed, (2) Fix formatting inconsistencies, (3) Identify claims in the text that need citations but lack them, (4) Suggest more recent or more relevant references where appropriate, (5) Ensure reference style matches {style} format.
|
|
1370
|
+
|
|
1371
|
+
## Physics and Quantum Computing
|
|
1372
|
+
|
|
1373
|
+
### Quantum Circuit Design
|
|
1374
|
+
**Skills:** qiskit, cirq, sympy
|
|
1375
|
+
|
|
1376
|
+
Design a quantum circuit for: {algorithm}. (1) Define the problem Hamiltonian or target operation, (2) Decompose into elementary gates, (3) Optimize circuit depth and gate count, (4) Simulate the circuit on a noiseless backend, (5) Analyze the output state or measurement distribution, (6) Estimate resource requirements (qubits, gate depth) for real hardware.
|
|
1377
|
+
|
|
1378
|
+
### Quantum System Simulation
|
|
1379
|
+
**Skills:** qutip, sympy, matplotlib, scientific-visualization
|
|
1380
|
+
|
|
1381
|
+
Simulate the quantum system: {system}. (1) Define the Hamiltonian, (2) Choose the simulation method (exact diagonalization, tensor networks, Monte Carlo), (3) Compute ground state energy and wavefunction, (4) Calculate observables: {observables}, (5) Analyze phase transitions if relevant, (6) Visualize energy spectrum and correlation functions.
|
|
1382
|
+
|
|
1383
|
+
### Quantum Machine Learning
|
|
1384
|
+
**Skills:** pennylane, qiskit, scikit-learn, pytorch-lightning
|
|
1385
|
+
|
|
1386
|
+
Build a quantum machine learning model for: {task}. (1) Encode the data into quantum states (amplitude or angle encoding), (2) Design a parameterized quantum circuit (ansatz), (3) Train using a hybrid quantum-classical optimization loop, (4) Compare performance with classical ML baseline, (5) Analyze the expressibility and entanglement of the circuit, (6) Assess practical quantum advantage.
|
|
1387
|
+
|
|
1388
|
+
### Classical Mechanics Simulation
|
|
1389
|
+
**Skills:** sympy, matplotlib, scientific-visualization, matlab
|
|
1390
|
+
|
|
1391
|
+
Simulate the mechanical system: {system}. (1) Formulate the equations of motion (Newtonian or Lagrangian), (2) Set initial conditions: {conditions}, (3) Integrate using appropriate numerical methods (RK4, Verlet), (4) Visualize the trajectory and phase space, (5) Compute conserved quantities (energy, momentum, angular momentum), (6) Analyze stability and sensitivity to initial conditions.
|
|
1392
|
+
|
|
1393
|
+
### Electromagnetic Simulation
|
|
1394
|
+
**Skills:** sympy, matlab, matplotlib, scientific-visualization
|
|
1395
|
+
|
|
1396
|
+
Simulate the electromagnetic system: {system}. (1) Define the geometry, materials, and boundary conditions, (2) Choose the appropriate method (FDTD, FEM, MoM), (3) Solve for electric and magnetic fields, (4) Compute derived quantities (impedance, S-parameters, radiation pattern), (5) Visualize field distributions, (6) Analyze resonances and mode profiles.
|
|
1397
|
+
|
|
1398
|
+
### Statistical Mechanics Simulation
|
|
1399
|
+
**Skills:** sympy, matplotlib, scientific-visualization, molecular-dynamics
|
|
1400
|
+
|
|
1401
|
+
Perform a statistical mechanics simulation of: {system}. (1) Define the model Hamiltonian, (2) Implement Monte Carlo (Metropolis) or molecular dynamics simulation, (3) Equilibrate and sample the canonical/microcanonical ensemble at T = {temperature}, (4) Compute thermodynamic averages (energy, heat capacity, magnetization), (5) Analyze phase transitions and critical exponents, (6) Generate phase diagram if varying parameters.
|
|
1402
|
+
|
|
1403
|
+
### Particle Physics Data Analysis
|
|
1404
|
+
**Skills:** statistical-analysis, matplotlib, scientific-visualization, sympy **[needs files]**
|
|
1405
|
+
|
|
1406
|
+
Analyze the uploaded particle physics data. (1) Apply event selection cuts for {channel}, (2) Reconstruct invariant mass distributions, (3) Fit signal + background models, (4) Calculate signal significance, (5) Estimate cross-section or branching ratio, (6) Compare with Standard Model predictions, (7) Generate publication-quality plots with statistical uncertainties.
|
|
1407
|
+
|
|
1408
|
+
### Band Structure Calculation
|
|
1409
|
+
**Skills:** pymatgen, matplotlib, scientific-visualization, sympy
|
|
1410
|
+
|
|
1411
|
+
Calculate the electronic band structure for: {material}. (1) Set up the crystal structure and lattice parameters, (2) Choose the appropriate method (DFT, tight-binding), (3) Compute bands along high-symmetry paths in the Brillouin zone, (4) Calculate the density of states (DOS), (5) Identify band gap, Fermi level, and band character, (6) Visualize band structure and projected DOS.
|
|
1412
|
+
|
|
1413
|
+
### Optics Simulation
|
|
1414
|
+
**Skills:** sympy, matplotlib, scientific-visualization, matlab
|
|
1415
|
+
|
|
1416
|
+
Simulate the optical system: {system}. (1) Define the optical configuration and components, (2) Perform ray tracing or wave optics propagation, (3) Compute key metrics: {metrics}, (4) Analyze aberrations, diffraction, or interference patterns, (5) Optimize system parameters, (6) Visualize beam profiles and optical fields.
|
|
1417
|
+
|
|
1418
|
+
### Thermodynamic Modeling
|
|
1419
|
+
**Skills:** sympy, matplotlib, scientific-visualization
|
|
1420
|
+
|
|
1421
|
+
Model the thermodynamic system: {system}. (1) Define the working fluid and state points, (2) Calculate state properties at each point (T, P, h, s, v), (3) Compute cycle efficiency and work output, (4) Generate T-s and P-v diagrams, (5) Perform sensitivity analysis on key parameters, (6) Compare with ideal cycle performance. Report all energy balances.
|
|
1422
|
+
|
|
1423
|
+
### Gravitational Wave Analysis
|
|
1424
|
+
**Skills:** astropy, matplotlib, scientific-visualization, statistical-analysis **[needs files]**
|
|
1425
|
+
|
|
1426
|
+
Analyze the uploaded gravitational wave data. (1) Apply bandpass filtering and noise whitening, (2) Compute spectrograms and Q-transforms, (3) Perform matched filtering against {templates}, (4) Estimate signal parameters (chirp mass, spin, distance), (5) Calculate signal-to-noise ratio, (6) Generate strain and spectrogram visualizations, (7) Compare with waveform templates.
|
|
1427
|
+
|
|
1428
|
+
### Plasma Physics Simulation
|
|
1429
|
+
**Skills:** fluidsim, sympy, matplotlib, scientific-visualization
|
|
1430
|
+
|
|
1431
|
+
Simulate the plasma system: {system}. (1) Define plasma parameters (density, temperature, magnetic field), (2) Choose the appropriate model (MHD, PIC, Vlasov), (3) Set boundary and initial conditions, (4) Evolve the system and track: {quantities}, (5) Analyze instabilities and wave modes, (6) Visualize density, field, and velocity distributions.
|
|
1432
|
+
|
|
1433
|
+
### Quantum Error Correction
|
|
1434
|
+
**Skills:** qiskit, cirq, matplotlib, scientific-visualization
|
|
1435
|
+
|
|
1436
|
+
Design a quantum error correction scheme for: {noise_model}. (1) Select an appropriate QEC code (surface code, Steane, Shor), (2) Implement encoding and syndrome measurement circuits, (3) Simulate logical error rates vs physical error rate, (4) Plot the error threshold diagram, (5) Analyze resource overhead (physical qubits per logical qubit), (6) Compare with alternative codes.
|
|
1437
|
+
|
|
1438
|
+
### Nuclear Decay Analysis
|
|
1439
|
+
**Skills:** statistical-analysis, sympy, matplotlib, scientific-visualization
|
|
1440
|
+
|
|
1441
|
+
Analyze the nuclear decay data for: {isotope}. (1) Fit exponential decay curves to determine half-life, (2) Identify decay products and branching ratios, (3) Construct the decay chain, (4) Calculate specific activity and dose rates, (5) Compare with literature values from nuclear databases, (6) Generate decay scheme diagrams.
|
|
1442
|
+
|
|
1443
|
+
## Proteomics and Structural Biology
|
|
1444
|
+
|
|
1445
|
+
### Protein Structure Analysis
|
|
1446
|
+
**Skills:** pdb-database, alphafold-database, biopython, esm
|
|
1447
|
+
|
|
1448
|
+
Analyze the protein structure for: {protein}. (1) Retrieve the structure from PDB or AlphaFold, (2) Describe the overall fold and domains, (3) Identify active site residues and binding pockets, (4) Analyze secondary structure composition, (5) Visualize key structural features, (6) Compare with homologous structures if relevant.
|
|
1449
|
+
|
|
1450
|
+
### Molecular Docking
|
|
1451
|
+
**Skills:** diffdock, rdkit, pdb-database
|
|
1452
|
+
|
|
1453
|
+
Perform molecular docking of {ligand} against {target}. (1) Retrieve or prepare the protein structure, (2) Prepare the ligand, (3) Define the binding site, (4) Run docking simulations, (5) Analyze binding poses and scores, (6) Visualize the best binding mode. Report binding affinity and key interactions.
|
|
1454
|
+
|
|
1455
|
+
### Mass Spectrometry Proteomics
|
|
1456
|
+
**Skills:** pyopenms, kegg-database, scientific-visualization, statistical-analysis **[needs files]**
|
|
1457
|
+
|
|
1458
|
+
Analyze the uploaded mass spectrometry proteomics data. (1) Process raw spectra (peak picking, deconvolution), (2) Peptide-spectrum matching against {database} database, (3) Protein inference and FDR control, (4) Label-free or TMT quantification, (5) Differential expression analysis between {comparison}, (6) Pathway enrichment of significant proteins. Generate volcano plot and heatmap.
|
|
1459
|
+
|
|
1460
|
+
### Protein-Protein Interaction Network
|
|
1461
|
+
**Skills:** string-database, networkx, scientific-visualization, kegg-database
|
|
1462
|
+
|
|
1463
|
+
Construct a protein-protein interaction network for: {proteins}. (1) Query STRING database for known interactions, (2) Add predicted interactions from co-expression and text mining, (3) Build and visualize the network, (4) Identify hub proteins and clusters, (5) Perform GO enrichment on network modules, (6) Compare with {context} if relevant.
|
|
1464
|
+
|
|
1465
|
+
### AlphaFold Structure Prediction
|
|
1466
|
+
**Skills:** alphafold-database, pdb-database, biopython, esm
|
|
1467
|
+
|
|
1468
|
+
Obtain the AlphaFold-predicted structure for: {protein}. (1) Check the AlphaFold database for existing predictions, (2) Assess prediction confidence (pLDDT scores), (3) Identify well-predicted vs disordered regions, (4) Compare with experimental structures if available, (5) Analyze key structural features (domains, active sites, interfaces), (6) Visualize and annotate the structure.
|
|
1469
|
+
|
|
1470
|
+
### Protein Engineering Design
|
|
1471
|
+
**Skills:** esm, adaptyv, alphafold-database, biopython
|
|
1472
|
+
|
|
1473
|
+
Design protein engineering strategies for: {protein} to improve {property}. (1) Analyze the wild-type structure and active site, (2) Identify candidate positions for mutagenesis (conservation, structural context), (3) Predict effects of mutations using computational tools, (4) Rank mutations by predicted impact, (5) Suggest a focused library design, (6) Recommend experimental validation strategy.
|
|
1474
|
+
|
|
1475
|
+
### Binding Site Analysis
|
|
1476
|
+
**Skills:** pdb-database, rdkit, diffdock, biopython
|
|
1477
|
+
|
|
1478
|
+
Analyze the binding site(s) of: {protein}. (1) Identify all binding pockets using geometric and energy-based methods, (2) Characterize each pocket (volume, hydrophobicity, druggability score), (3) Identify key residues lining the binding site, (4) Map known ligands to binding sites, (5) Compare pocket conservation across homologs, (6) Assess druggability and suggest pharmacophore features.
|
|
1479
|
+
|
|
1480
|
+
### Molecular Dynamics Simulation
|
|
1481
|
+
**Skills:** molecular-dynamics, rowan, pdb-database
|
|
1482
|
+
|
|
1483
|
+
Set up and analyze a molecular dynamics simulation of: {system}. (1) Prepare the system (solvation, ionization, force field selection), (2) Energy minimization and equilibration protocol, (3) Production run setup ({duration}), (4) Analyze RMSD, RMSF, radius of gyration, (5) Identify key conformational changes, (6) Calculate binding free energy if ligand present.
|
|
1484
|
+
|
|
1485
|
+
### Homology Modeling
|
|
1486
|
+
**Skills:** pdb-database, biopython, alphafold-database, esm
|
|
1487
|
+
|
|
1488
|
+
Build a homology model for: {protein}. (1) Search for suitable template structures in PDB, (2) Perform sequence alignment with templates, (3) Build the 3D model using comparative modeling, (4) Refine loop regions and side chains, (5) Validate the model (Ramachandran plot, ERRAT, ProSA), (6) Compare with AlphaFold prediction if available.
|
|
1489
|
+
|
|
1490
|
+
### Protein Function Prediction
|
|
1491
|
+
**Skills:** interpro-database, uniprot-database, biopython, esm
|
|
1492
|
+
|
|
1493
|
+
Predict the function of: {protein}. (1) Run sequence similarity searches (BLAST, HMMer), (2) Identify conserved domains (InterPro, Pfam), (3) Predict subcellular localization, (4) Predict Gene Ontology terms from sequence and structure, (5) Check for signal peptides and transmembrane domains, (6) Integrate all evidence into a function prediction with confidence scores.
|
|
1494
|
+
|
|
1495
|
+
### PTM Analysis
|
|
1496
|
+
**Skills:** uniprot-database, biopython, pdb-database
|
|
1497
|
+
|
|
1498
|
+
Analyze post-translational modifications for: {protein}. (1) Query known PTMs from UniProt, (2) Predict phosphorylation, glycosylation, ubiquitination, and acetylation sites, (3) Map PTMs onto the 3D structure, (4) Assess structural and functional impact of each PTM, (5) Check for disease-associated PTM changes, (6) Compare PTM conservation across species.
|
|
1499
|
+
|
|
1500
|
+
### Structural Alignment
|
|
1501
|
+
**Skills:** pdb-database, biopython, scientific-visualization
|
|
1502
|
+
|
|
1503
|
+
Perform structural alignment between: {structures}. (1) Superimpose the structures using TM-align or similar, (2) Calculate RMSD and TM-score, (3) Identify conserved structural cores and variable regions, (4) Map sequence differences onto the structural alignment, (5) Highlight functional site differences, (6) Visualize the superposition with color-coded differences.
|
|
1504
|
+
|
|
1505
|
+
### Epitope Prediction
|
|
1506
|
+
**Skills:** biopython, alphafold-database, esm, uniprot-database
|
|
1507
|
+
|
|
1508
|
+
Predict epitopes for: {antigen}. (1) Predict linear B-cell epitopes (surface accessibility, hydrophilicity), (2) Predict conformational B-cell epitopes from 3D structure, (3) Predict MHC-I binding peptides for {hla_alleles}, (4) Predict MHC-II binding peptides, (5) Rank epitopes by predicted immunogenicity, (6) Map top epitopes onto the protein structure. Suggest candidates for vaccine design.
|
|
1509
|
+
|
|
1510
|
+
## Science Communication
|
|
1511
|
+
|
|
1512
|
+
### Plain Language Summary
|
|
1513
|
+
**Skills:** scientific-writing, writing **[needs files]**
|
|
1514
|
+
|
|
1515
|
+
Rewrite the uploaded paper or abstract in plain language suitable for a non-specialist audience. Avoid jargon, use analogies where helpful, and convey the key findings and their significance in 2-3 paragraphs. This should be suitable for a press release or public-facing summary.
|
|
1516
|
+
|
|
1517
|
+
### Write a Blog Post
|
|
1518
|
+
**Skills:** scientific-writing, writing **[needs files]**
|
|
1519
|
+
|
|
1520
|
+
Write an engaging scientific blog post based on the uploaded paper or results. Use an accessible tone, hook the reader with a compelling opening, explain the science clearly with examples and analogies, and end with why this matters. Target length: 800-1200 words.
|
|
1521
|
+
|
|
1522
|
+
### Draft a Protocol
|
|
1523
|
+
**Skills:** scientific-writing, writing, protocolsio-integration
|
|
1524
|
+
|
|
1525
|
+
Write a detailed step-by-step protocol for: {procedure}. Include: (1) Overview and purpose, (2) Materials and reagents (with catalog numbers if applicable), (3) Equipment needed, (4) Numbered step-by-step procedure, (5) Expected results and troubleshooting tips, (6) Safety notes.
|
|
1526
|
+
|
|
1527
|
+
### Write a Press Release
|
|
1528
|
+
**Skills:** scientific-writing, writing **[needs files]**
|
|
1529
|
+
|
|
1530
|
+
Write an institutional press release about the uploaded research paper or findings. Include: (1) Attention-grabbing headline, (2) Lead paragraph with the key finding, (3) Context and significance, (4) Quotes from researchers, (5) Methods in plain language, (6) Future implications, (7) Contact information placeholder. Write at an 8th-grade reading level.
|
|
1531
|
+
|
|
1532
|
+
### Social Media Post
|
|
1533
|
+
**Skills:** scientific-writing, writing **[needs files]**
|
|
1534
|
+
|
|
1535
|
+
Create a social media thread (Twitter/X or LinkedIn) summarizing the uploaded paper or research finding. Write {num_posts} posts that: (1) Hook with the key finding, (2) Explain the context, (3) Describe the method simply, (4) Present the main result, (5) State why it matters, (6) Include relevant hashtags. Keep each post under 280 characters for Twitter.
|
|
1536
|
+
|
|
1537
|
+
### Write a Podcast Script
|
|
1538
|
+
**Skills:** scientific-writing, writing, research-lookup
|
|
1539
|
+
|
|
1540
|
+
Write a podcast script discussing: {topic}. Structure: (1) Engaging introduction with a hook, (2) Background context, (3) Main discussion points based on recent findings, (4) Interview-style questions and talking points, (5) Conclusion with key takeaways. Target length: {duration} minutes of speaking. Use conversational but accurate language.
|
|
1541
|
+
|
|
1542
|
+
### Write a Policy Brief
|
|
1543
|
+
**Skills:** scientific-writing, writing, research-lookup
|
|
1544
|
+
|
|
1545
|
+
Write a policy brief on: {topic}. Target audience: {audience}. Include: (1) Executive summary, (2) Problem statement with data, (3) Key research findings, (4) Policy options with pros/cons, (5) Recommended actions, (6) Implementation considerations. Keep to 2-4 pages and lead with actionable recommendations.
|
|
1546
|
+
|
|
1547
|
+
### Patient Education Material
|
|
1548
|
+
**Skills:** scientific-writing, writing, clinical-decision-support
|
|
1549
|
+
|
|
1550
|
+
Create patient education materials about: {condition}. Include: (1) What the condition is (plain language), (2) Causes and risk factors, (3) Signs and symptoms, (4) Diagnosis and treatment options, (5) What to expect, (6) When to seek help, (7) Frequently asked questions. Write at a 6th-grade reading level. Avoid medical jargon.
|
|
1551
|
+
|
|
1552
|
+
### Write a Textbook Chapter
|
|
1553
|
+
**Skills:** scientific-writing, writing, research-lookup
|
|
1554
|
+
|
|
1555
|
+
Write a textbook chapter on: {topic} for a {level} audience. Include: (1) Learning objectives, (2) Introduction with historical context, (3) Core concepts explained progressively, (4) Worked examples and case studies, (5) Key equations/formulas with derivations, (6) Summary and key takeaways, (7) Review questions. Target length: {length} words.
|
|
1556
|
+
|
|
1557
|
+
### Write an Elevator Pitch
|
|
1558
|
+
**Skills:** scientific-writing, writing
|
|
1559
|
+
|
|
1560
|
+
Write a compelling 30-60 second elevator pitch for the research project: {topic}. The pitch should: (1) Open with a relatable problem or striking fact, (2) Explain what you're doing in one sentence, (3) Describe the approach briefly, (4) State the potential impact, (5) End with a call to action or next step. Avoid all jargon. Write for a {audience} audience.
|
|
1561
|
+
|
|
1562
|
+
## Social Science
|
|
1563
|
+
|
|
1564
|
+
### Survey Data Analysis
|
|
1565
|
+
**Skills:** statistical-analysis, scientific-visualization, statsmodels, polars **[needs files]**
|
|
1566
|
+
|
|
1567
|
+
Analyze the uploaded survey data (n={n} respondents). (1) Report response rates and check for non-response bias, (2) Descriptive statistics for all items, (3) Cross-tabulations with chi-square tests for key comparisons, (4) Likert scale analysis (means, medians, distributions), (5) Factor analysis or PCA if multiple scale items, (6) Regression models predicting {outcome}. Apply survey weights if provided.
|
|
1568
|
+
|
|
1569
|
+
### Text Mining & NLP
|
|
1570
|
+
**Skills:** transformers, scientific-visualization, matplotlib, scikit-learn **[needs files]**
|
|
1571
|
+
|
|
1572
|
+
Perform text mining on the uploaded corpus ({corpus_type}). (1) Preprocess: tokenize, remove stopwords, lemmatize, (2) Generate word frequency and TF-IDF analysis, (3) Run topic modeling (LDA) with {n_topics} topics, (4) Perform named entity recognition, (5) Analyze sentiment distribution, (6) Visualize with word clouds, topic networks, and temporal trends.
|
|
1573
|
+
|
|
1574
|
+
### Demographic Analysis
|
|
1575
|
+
**Skills:** datacommons-client, scientific-visualization, statistical-analysis, matplotlib
|
|
1576
|
+
|
|
1577
|
+
Perform a demographic analysis for: {population}. (1) Compile population data (age, sex, ethnicity, education, income), (2) Create population pyramids and distribution charts, (3) Analyze trends over {period}, (4) Compute dependency ratios and aging indicators, (5) Compare with national/regional benchmarks, (6) Project future demographics using cohort-component method.
|
|
1578
|
+
|
|
1579
|
+
### Social Network Analysis
|
|
1580
|
+
**Skills:** networkx, scientific-visualization, matplotlib, plotly **[needs files]**
|
|
1581
|
+
|
|
1582
|
+
Analyze the uploaded social network data. (1) Compute network statistics (size, density, diameter, clustering coefficient), (2) Calculate centrality measures (degree, betweenness, closeness, eigenvector), (3) Detect communities (Louvain algorithm), (4) Identify bridges and brokers, (5) Analyze information flow patterns, (6) Visualize the network with community coloring and centrality-based node sizing.
|
|
1583
|
+
|
|
1584
|
+
### Social Media Sentiment Analysis
|
|
1585
|
+
**Skills:** transformers, scientific-visualization, statistical-analysis, matplotlib **[needs files]**
|
|
1586
|
+
|
|
1587
|
+
Analyze sentiment in the uploaded social media data about: {topic}. (1) Classify posts as positive/negative/neutral using NLP, (2) Track sentiment over time, (3) Identify key themes driving positive and negative sentiment, (4) Analyze sentiment by demographic or geographic group if available, (5) Detect bot or inauthentic activity, (6) Generate a sentiment report with actionable insights.
|
|
1588
|
+
|
|
1589
|
+
### Policy Impact Evaluation
|
|
1590
|
+
**Skills:** statsmodels, statistical-analysis, scientific-visualization, matplotlib
|
|
1591
|
+
|
|
1592
|
+
Evaluate the impact of {policy} on {outcome}. (1) Define the treatment and control groups, (2) Apply the appropriate method: {method}, (3) Check parallel trends assumption (if DiD), (4) Estimate the treatment effect with confidence intervals, (5) Run robustness checks (placebo tests, alternative specifications), (6) Interpret findings and discuss policy implications.
|
|
1593
|
+
|
|
1594
|
+
### Education Outcomes Analysis
|
|
1595
|
+
**Skills:** statistical-analysis, scikit-learn, scientific-visualization, statsmodels **[needs files]**
|
|
1596
|
+
|
|
1597
|
+
Analyze education outcomes from the uploaded data. (1) Describe student demographics and performance distributions, (2) Compare outcomes between {groups}, (3) Analyze achievement gaps by subgroup, (4) Build a predictive model for {outcome}, (5) Identify key predictors of success, (6) Evaluate the effect of {intervention} if intervention data available. Control for SES and prior achievement.
|
|
1598
|
+
|
|
1599
|
+
### Public Opinion Analysis
|
|
1600
|
+
**Skills:** statistical-analysis, scientific-visualization, matplotlib, statsmodels **[needs files]**
|
|
1601
|
+
|
|
1602
|
+
Analyze public opinion on: {topic} from the uploaded polling data. (1) Weight responses for representativeness, (2) Calculate point estimates with margins of error, (3) Analyze trends over time, (4) Break down by demographics (age, gender, education, party, region), (5) Identify opinion drivers using regression, (6) Compare with historical polls and identify shifts.
|
|
1603
|
+
|
|
1604
|
+
### Migration Analysis
|
|
1605
|
+
**Skills:** geopandas, datacommons-client, scientific-visualization, statsmodels **[needs files]**
|
|
1606
|
+
|
|
1607
|
+
Analyze migration patterns for {region}. (1) Map migration flows (origin-destination) from the uploaded or public data, (2) Quantify net migration rates, (3) Analyze push and pull factors, (4) Model migration determinants using gravity models, (5) Assess demographic impact on sending and receiving regions, (6) Visualize flows on maps and chord diagrams.
|
|
1608
|
+
|
|
1609
|
+
### Inequality Measurement
|
|
1610
|
+
**Skills:** statistical-analysis, scientific-visualization, matplotlib, datacommons-client **[needs files]**
|
|
1611
|
+
|
|
1612
|
+
Measure inequality in {dimension} using the uploaded data. (1) Calculate Gini coefficient and Lorenz curve, (2) Compute percentile ratios (90/10, 80/20), (3) Decompose inequality by {subgroups}, (4) Analyze trends over time, (5) Compare with international benchmarks, (6) Identify key drivers using decomposition methods (Blinder-Oaxaca, Theil).
|
|
1613
|
+
|
|
1614
|
+
### Behavioral Experiment Analysis
|
|
1615
|
+
**Skills:** statistical-analysis, statsmodels, scientific-visualization, pymc **[needs files]**
|
|
1616
|
+
|
|
1617
|
+
Analyze data from the uploaded behavioral experiment ({design}). (1) Check randomization balance, (2) Analyze manipulation check, (3) Test main hypotheses using {analysis_type}, (4) Analyze moderators and mediators, (5) Calculate effect sizes (Cohen's d, partial eta-squared), (6) Check for demand effects and order effects, (7) Generate APA-formatted results with publication-quality figures.
|
|
1618
|
+
|
|
1619
|
+
### Content Analysis
|
|
1620
|
+
**Skills:** transformers, scientific-visualization, statistical-analysis, matplotlib **[needs files]**
|
|
1621
|
+
|
|
1622
|
+
Perform content analysis on the uploaded documents/media. (1) Develop a coding scheme for: {categories}, (2) Apply automated coding using NLP, (3) Calculate inter-rater reliability (Cohen's kappa) if human-coded, (4) Analyze frequency and co-occurrence of codes, (5) Compare content across {groups} or time periods, (6) Identify dominant frames and narratives.
|
|
1623
|
+
|
|
1624
|
+
## Visualization and Figures
|
|
1625
|
+
|
|
1626
|
+
### Create a Graphical Abstract
|
|
1627
|
+
**Skills:** generate-image, scientific-schematics, infographics **[needs files]**
|
|
1628
|
+
|
|
1629
|
+
Create a graphical abstract summarizing the key findings of the uploaded paper or data. The graphic should be clear, visually appealing, and convey the main story in a single figure. Use a logical flow from left to right or top to bottom. Include minimal text labels.
|
|
1630
|
+
|
|
1631
|
+
### Make a Publication Figure
|
|
1632
|
+
**Skills:** scientific-visualization, matplotlib, seaborn, plotly **[needs files]**
|
|
1633
|
+
|
|
1634
|
+
Create publication-quality figures from the uploaded data. Choose appropriate plot types for the data, use clear axis labels and legends, apply a clean color palette, and ensure the figures are suitable for journal submission at high resolution. {instructions}
|
|
1635
|
+
|
|
1636
|
+
### Build a Slide Deck
|
|
1637
|
+
**Skills:** scientific-slides, pptx **[needs files]**
|
|
1638
|
+
|
|
1639
|
+
Create a scientific slide deck (PPTX) based on the uploaded paper or data. The presentation is for a {context}. Include a title slide, outline, background/motivation, methods overview, key results with figures, discussion points, and conclusions. Keep slides clean with minimal text.
|
|
1640
|
+
|
|
1641
|
+
### Create a Conference Poster
|
|
1642
|
+
**Skills:** pptx-posters, latex-posters, scientific-visualization **[needs files]**
|
|
1643
|
+
|
|
1644
|
+
Design a scientific conference poster based on the uploaded paper or results. Include: title and authors, introduction/background, methods, key results with figures, conclusions, and references. Use a clear visual hierarchy and clean layout.
|
|
1645
|
+
|
|
1646
|
+
### Create an Infographic
|
|
1647
|
+
**Skills:** infographics, generate-image **[needs files]**
|
|
1648
|
+
|
|
1649
|
+
Create an infographic that explains the key findings from the uploaded paper or data in a visually engaging way suitable for a broad audience. Use icons, simple charts, and minimal jargon. The infographic should tell a clear story.
|
|
1650
|
+
|
|
1651
|
+
### Create a Scientific Schematic
|
|
1652
|
+
**Skills:** scientific-schematics, generate-image, markdown-mermaid-writing
|
|
1653
|
+
|
|
1654
|
+
Create a scientific schematic diagram illustrating: {concept}. The diagram should clearly show the key components, their relationships, and the flow of the process. Use standard scientific conventions, clean lines, and appropriate labels. Make it suitable for inclusion in a journal manuscript.
|
|
1655
|
+
|
|
1656
|
+
### Create a Flowchart
|
|
1657
|
+
**Skills:** markdown-mermaid-writing, scientific-schematics, generate-image
|
|
1658
|
+
|
|
1659
|
+
Create a detailed flowchart for: {workflow}. Show all decision points, parallel processes, and outcomes. Use standard flowchart symbols (rectangles for processes, diamonds for decisions, ovals for start/end). Include color coding for different phases.
|
|
1660
|
+
|
|
1661
|
+
### Create a Research Timeline
|
|
1662
|
+
**Skills:** scientific-visualization, matplotlib, markdown-mermaid-writing
|
|
1663
|
+
|
|
1664
|
+
Create a visual research timeline for a project on: {project}. Total duration: {duration}. Show key milestones, deliverables, work packages, and dependencies. Use a Gantt-chart style with color-coded phases. Include go/no-go decision points.
|
|
1665
|
+
|
|
1666
|
+
### Create a Heatmap
|
|
1667
|
+
**Skills:** scientific-visualization, seaborn, matplotlib, plotly **[needs files]**
|
|
1668
|
+
|
|
1669
|
+
Create a publication-quality heatmap from the uploaded matrix data. (1) Apply appropriate clustering (hierarchical, k-means) to rows and columns if suitable, (2) Choose a perceptually uniform colormap, (3) Add dendrograms if clustered, (4) Label axes clearly, (5) Include a color bar with units. {instructions}
|
|
1670
|
+
|
|
1671
|
+
### Create a Network Diagram
|
|
1672
|
+
**Skills:** scientific-visualization, networkx, plotly, matplotlib **[needs files]**
|
|
1673
|
+
|
|
1674
|
+
Create a network visualization from the uploaded data. (1) Parse nodes and edges, (2) Choose an appropriate layout algorithm (force-directed, circular, hierarchical), (3) Size nodes by {metric}, (4) Color-code by community/cluster, (5) Label key nodes, (6) Include a legend. Make it publication-ready.
|
|
1675
|
+
|
|
1676
|
+
### Create a Geographic Map
|
|
1677
|
+
**Skills:** geopandas, geomaster, scientific-visualization, matplotlib **[needs files]**
|
|
1678
|
+
|
|
1679
|
+
Create a geographic visualization from the uploaded data. (1) Plot data points on an appropriate map projection, (2) Use color gradients or sized markers for quantitative values, (3) Add a legend and scale bar, (4) Include relevant geographic features (borders, coastlines, rivers), (5) Make it publication-ready.
|
|
1680
|
+
|
|
1681
|
+
### Create an Interactive Dashboard
|
|
1682
|
+
**Skills:** plotly, exploratory-data-analysis, scientific-visualization **[needs files]**
|
|
1683
|
+
|
|
1684
|
+
Create an interactive data dashboard from the uploaded dataset. Include: (1) Summary statistics panel, (2) Key distributions as interactive histograms, (3) Correlation scatter plots with hover details, (4) Filterable data table, (5) Time series if temporal data exists. Use Plotly for interactivity. Save as HTML.
|