-
Notifications
You must be signed in to change notification settings - Fork 23
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
List of files / multiple files as input #9
Comments
You can run the mapper as:
Will this resolve your issue? |
BTW, you can also tweak the size of chunk that is processed at a time (assuming you can tolerate more memory-usage) using |
In theory, yes, but it's also super inconvenient to specify the names of 137 files on the command line.
Yes, I saw this parameter, but I had the impression that |
You might be able to do
Not tested |
Yes, sure. This will also work, unless you have to specify so many files that the command line becomes too long (2MB on my system, so quite a few file names):
But I wanted to propose a more elegant way. Of course, I can also put the file names into a text file and then run (assuming there are no spaces or other weird characters)
|
Dear maintainers,
is it possible to add a possibility to specify a list of input files instead of a single file? I work with the axolotl genome and have quite a few long reads. Therefore, I have two possibilities
zcat
the input files into a single huge fastq file, which is a bit wasteful given the amount of data ORzcat
the input files and pipe the data towinnowmap
.However, since the genome is to huge,
minimap2
has to split the index. Therefore, if I pipe the data,winnowmap
ends up mapping the reads only to the first 5 scaffolds, which are included in the first index chunk. Other scaffolds are processed as well afterwards, but there are no more data in the pipe.It would be nice to be able to specify multiple input files, which all can be read multiple times if necessary.
I also tried creating the index first by setting
-d scaffolds.mmi
, and then runningwinnowmap
, but in this case I get a segmentation fault.thanks!
The text was updated successfully, but these errors were encountered: