-
Notifications
You must be signed in to change notification settings - Fork 89
Add workflow Metadata and Sequences from BioProjectIDs #1177
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 10 commits
edb846b
736f719
10ad964
dabd3ac
4713a2b
5b49bd5
7b46681
59ce11a
e9a5cfc
72c9b2d
7e23933
dc88691
92ac9ee
79bb130
67ed4a4
bcd98ac
89ca531
747ad3d
05695f2
eb1475c
daad82b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| version: 1.2 | ||
| workflows: | ||
| - name: main | ||
| subclass: Galaxy | ||
| publish: true | ||
| primaryDescriptorPath: /metadata-and-sequences-from-BioProjectIDs.ga | ||
| testParameterFiles: | ||
| - /metadata-and-sequences-from-BioProjectIDs-tests.yml | ||
| authors: | ||
| - name: Giuseppe Defazio | ||
| orcid: 0000-0002-9356-5224 | ||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,5 @@ | ||||||
| version: '0.1' | ||||||
| registries: | ||||||
| - url: https://workflowhub.eu | ||||||
| project: iwc | ||||||
| workflow: metadata-and-sequences-from-BioProjectsIDs/main | ||||||
|
||||||
| workflow: metadata-and-sequences-from-BioProjectsIDs/main | |
| workflow: metadata-and-sequences-from-bioprojectids/main |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| # Changelog | ||
|
|
||
| ## [0.1] - 2026-03-23 | ||
|
|
||
| - Added workflow |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| # Metadata and Sequences from BioProjectIDs | ||
|
|
||
| This workflow takes BioProject IDs as input and is able to retrieve SRA tables and FASTQ files from IDs using pysradb and SRA fetching. | ||
| The workflow may be very useful in Meta-analysis and reanalysis scenarios, giving the possibility to collect metadata and data from BioProject IDs of studies with the same design. | ||
|
|
||
| ## Input | ||
|
|
||
| The workflow needs a single tabular input dataset (uploaded as txt file as well), without header, with the first column reporting one or more BioProject IDs. | ||
|
||
|
|
||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Would you mind to describe here the parameters you expose, to guide the users? |
||
|
|
||
| ## Outputs | ||
|
|
||
| There are 3 main outputs: | ||
|
|
||
| - Data collection for SRA manifest of input BioProject ID(s) | ||
| - Data collection for Paired End FASTQ files | ||
| - Data collection for Single End FASTQ files | ||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,95 @@ | ||||||
| - doc: Test 1 for Metadata-and-Sequences-from-BioProjectIDs | ||||||
| job: | ||||||
| BioProject IDs: | ||||||
| class: File | ||||||
| path: test-data/test1_single_prj_pe.txt | ||||||
| filetype: tabular | ||||||
|
||||||
| filetype: tabular | |
| filetype: txt |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The referenced workflow/test filenames in
primaryDescriptorPath/testParameterFilesinclude uppercase letters and “BioProjectIDs” without a space. For new IWC workflow additions, filenames/folder names are expected to be lowercase with dashes and human-readable wording (e.g.,...-bioproject-ids...). Consider renaming the workflow and test files (and updating these paths) to match that convention.