Skip to content
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

Correct the HISAT reference index to be a string instead of a file #166

Open
malachig opened this issue Dec 12, 2024 · 0 comments
Open

Correct the HISAT reference index to be a string instead of a file #166

malachig opened this issue Dec 12, 2024 · 0 comments

Comments

@malachig
Copy link
Member

malachig commented Dec 12, 2024

Currently for the definitions/rnaseq.wdl we use reference_index as an input in our YAML.

In the WDL rnaseq pipeline it is defined as:

File reference_index

But it is not a file. This is a string that corresponds to the base name of the HISAT index files but does NOT correspond to a directory OR a specific file path.

From the HISAT manual:

-x
The basename of the index for the reference genome.

It only actually gets used here:

-x ~{reference_index} \

I believe we can change this to String reference_index in the following locations and avoid the current workaround of creating an empty file with the base name.

File reference_index

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant