Mercurial > repos > iuc > alphagenome_sequence_predictor
comparison macros.xml @ 0:7c47594f8a48 draft default tip
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/alphagenome commit 5c5a853db3db3e6590e2e39d9b4b54c5a3b1a708
| author | iuc |
|---|---|
| date | Fri, 20 Mar 2026 20:08:37 +0000 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:7c47594f8a48 |
|---|---|
| 1 <macros> | |
| 2 <token name="@TOOL_VERSION@">0.6.1</token> | |
| 3 <token name="@VERSION_SUFFIX@">0</token> | |
| 4 <token name="@PROFILE@">25.0</token> | |
| 5 <xml name="requirements"> | |
| 6 <requirements> | |
| 7 <requirement type="package" version="@TOOL_VERSION@">alphagenome</requirement> | |
| 8 <requirement type="package" version="0.31.4">cyvcf2</requirement> | |
| 9 <credentials name="alphagenome" version="1.0" label="AlphaGenome API" description="API key from Google DeepMind AlphaGenome"> | |
| 10 <secret name="api_key" inject_as_env="ALPHAGENOME_API_KEY" label="API Key" description="Your AlphaGenome API key"/> | |
| 11 </credentials> | |
| 12 </requirements> | |
| 13 </xml> | |
| 14 <xml name="organism_param"> | |
| 15 <param name="organism" type="select" label="Organism"> | |
| 16 <option value="human" selected="true">Human (hg38)</option> | |
| 17 <option value="mouse">Mouse (mm10)</option> | |
| 18 </param> | |
| 19 </xml> | |
| 20 <xml name="sequence_length_param"> | |
| 21 <param name="sequence_length" type="select" label="Prediction window size" help="Genomic context window in bases around the target region (e.g. 1 Mb = 1,048,576 bases, not bytes)"> | |
| 22 <option value="16KB">16 kb</option> | |
| 23 <option value="128KB">128 kb</option> | |
| 24 <option value="512KB">512 kb</option> | |
| 25 <option value="1MB" selected="true">1 Mb</option> | |
| 26 </param> | |
| 27 </xml> | |
| 28 <xml name="output_types_param"> | |
| 29 <param name="output_types" type="select" multiple="true" label="Output types to predict"> | |
| 30 <option value="RNA_SEQ" selected="true">RNA-seq</option> | |
| 31 <option value="ATAC">ATAC-seq</option> | |
| 32 <option value="CAGE">CAGE</option> | |
| 33 <option value="DNASE">DNase</option> | |
| 34 <option value="CHIP_HISTONE">ChIP-seq histone</option> | |
| 35 <option value="CHIP_TF">ChIP-seq TF</option> | |
| 36 <option value="SPLICE_SITES">Splice sites</option> | |
| 37 <option value="PROCAP">PRO-cap</option> | |
| 38 <validator type="no_options" message="Select at least one output type"/> | |
| 39 </param> | |
| 40 </xml> | |
| 41 <xml name="ontology_terms_param"> | |
| 42 <param name="ontology_terms" type="text" value="" label="Ontology terms (optional)" help="Comma-separated UBERON/CL terms for tissue context, e.g. UBERON:0002107,CL:0000746"> | |
| 43 <validator type="regex" message="Only alphanumeric characters, colons, commas, and spaces are allowed">[A-Za-z0-9:, ]*</validator> | |
| 44 </param> | |
| 45 </xml> | |
| 46 <xml name="test_fixture_param"> | |
| 47 <param name="test_fixture" type="hidden" value=""/> | |
| 48 </xml> | |
| 49 <token name="@CMD_ONTOLOGY_TERMS@"><![CDATA[ | |
| 50 #if str($ontology_terms).strip() | |
| 51 --ontology-terms '$ontology_terms' | |
| 52 #end if | |
| 53 ]]></token> | |
| 54 <token name="@CMD_TEST_FIXTURE@"><![CDATA[ | |
| 55 #if $test_fixture | |
| 56 --test-fixture '$__tool_directory__/$test_fixture' | |
| 57 #end if | |
| 58 ]]></token> | |
| 59 <xml name="citations"> | |
| 60 <citations> | |
| 61 <citation type="doi">10.1038/s41586-025-10014-0</citation> | |
| 62 </citations> | |
| 63 </xml> | |
| 64 </macros> |
