-
Notifications
You must be signed in to change notification settings - Fork 1
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
add sortgff and gff3trimfasta modules #64
base: jbrowse_indexer
Are you sure you want to change the base?
add sortgff and gff3trimfasta modules #64
Conversation
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.
Keep them coming :)
I left a few comments to address
description: | | ||
Groovy Map containing sample information | ||
e.g. [ id:'test', single_end:false ] | ||
- tab: |
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.
tab
... gff seems more appropiate as a the name
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.
gff is used for output file
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.
sorterd_gff should be used for the gff then
description: | | ||
Groovy Map containing sample information | ||
e.g. [ id:'test', single_end:false ] | ||
- tab: |
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.
I would use gff
instead of tab
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.
I'll leave is as tab, as I'm using gff for the output. Changed the descrition to be more specific
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.
it should be gff, tab doesn't really convey what the input is... I would change the output to tbe sorted_gff or similar
Please, run the pre-commits too. There area few linting issues |
container 'quay.io/biocontainers/gawk:4.1.3--0' | ||
|
||
input: | ||
tuple val(meta), path(tab) |
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.
tuple val(meta), path(tab) | |
tuple val(meta), path(gff) |
tuple val(meta), path(tab) | ||
|
||
output: | ||
tuple val(meta), path("*._trimmed.gff"), optional: true, emit: gff |
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.
tuple val(meta), path("*._trimmed.gff"), optional: true, emit: gff | |
tuple val(meta), path("*._trimmed.gff"), optional: true, emit: trimmed_gff |
No description provided.