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

Question with bin #20

Open
nicoledel3 opened this issue Jan 13, 2019 · 1 comment
Open

Question with bin #20

nicoledel3 opened this issue Jan 13, 2019 · 1 comment

Comments

@nicoledel3
Copy link

For --reads, can I point to the fastq directory output by the minKNOW program? I have multiple fastq files output from basecalling by minKNOW, and I get an error saying that the directory can't be found. Thank you!

@mbhall88
Copy link

mbhall88 commented Jan 23, 2019

Looking at the code, it needs to be a single file.

Being able to point at multiple reads files would be super handy though. This would save having to concatenate all the fastq files together for the sake of just binning.

For now I would just do something like the following:

reads_dir=workspace/

cat $(find $reads_dir -name '*.fastq') > tmp_reads.fastq

deepbinner bin \
	--classes classifications \
	--reads tmp_reads.fastq \
	--out_dir .

rm tmp_reads.fastq

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

2 participants