-
Notifications
You must be signed in to change notification settings - Fork 308
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
ADAM to BAM conversion fails using relative path #1012
Comments
That's odd! What line is causing this error to throw? Can you post the full stack trace? |
Here you go:
|
Closing as we haven't been able to reproduce. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Using local filesystem ( I didn't try on HDFS) I observed the ADAM to BAM conversion using a relative path to the output BAM file attempted with:
adam-submit transform /mypath/mydataset.adam bam_limit_proj_marked/limit_proj_marked_v2.bam -single -sort_reads
to fail with error
java.io.FileNotFoundException: File bam_limit_proj_marked/limit_proj_marked_v2.bam_head does not exist
the same error also occurs if only the name of the intended output bam file (with no path) is provided
however, this will succed when specifying the absolute path to the output bam file like
adam-submit -- transform /mypath/mydataset.adam /mypath/bam_limit_proj_marked_v2/limit_proj_marked.bam -single -sort_reads
The text was updated successfully, but these errors were encountered: