-
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
java.io.FileNotFoundException when file exists #1385
Comments
Hi @akmorrow13! Could you post a stack trace? |
|
How are you saving that file? The short bit here is that we're somewhat lazy about autodetecting file types and we just use the file extension. So if you save reads as a SAM file but name the path "anythingnotendingindotsam.adam" or if you save features as a BED file but name the path "anythingnotendingindotbednarrowpeakgtfgffetc.adam", we'll try to load it as a Parquet file, in which case we expect to see other metadata files around. |
Lol thats it, thanks @fnothaft! |
No sweat! I like straightforward tickets! |
I have been having issues reading hdfs files via sc.loadFeatures() and sc.loadAlignments() in ADAMContext. However, I am able to load in the same file location using sc.textFile().
The text was updated successfully, but these errors were encountered: