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

Support accepting stdin instead of a specific filepath for single ended data #35

Open
BioWilko opened this issue Apr 22, 2024 · 2 comments
Labels
enhancement New feature or request

Comments

@BioWilko
Copy link

A common use I have for hostile is to cleanup and concatenate a directory of fastqs prior to moving them off instrument, if I could do all of this with a single one liner such as:

cat *.fastq.gz | hostile clean --fastq1 - > combined_clean.fastq.gz

This would make my life easier, as it stands hostile works absolutely fine since I can just concatenate then run the hostile clean command but doing it all in a more pipe-centric way would be a nice to have!

@bede
Copy link
Owner

bede commented Apr 22, 2024

Hey Sam, thanks for opening this. Agree it would be nice to have. When I get time I'll investigate whether it's straightforward and how much it improves performance. Can imagine it helping a fair bit on cheap cloud infra with slow block storage.

@bede
Copy link
Owner

bede commented Jul 16, 2024

Hey Sam,
Sorry for delay. I've just had a look and am deciding whether to implement it. Streaming the reads through the Python interpreter adds some overhead, but not as much as I expected, and it could be viable.

Firstly I'm planning to implement #39 which should dramatically speed up the processing of one sample after another with Minimap2.

In the meantime however, you could use the following hack to do what you need:

  1. Inside Hostile's container / conda env, run hostile clean as you would for a single file but include the --debug flag:
$ hostile clean --debug --fastq1 tests/data/tuberculosis_1_1.fastq.gz --debug        
20:30:20 DEBUG: clean_fastqs() threads=6
20:30:20 INFO: Hostile version 1.1.0. Mode: long read (Minimap2)
20:30:20 INFO: Found cached standard index human-t2t-hla
20:30:20 DEBUG: backend_cmds=["minimap2 -ax map-ont -m 40 --secondary no -t 6  '/Users/bede.constantinides/Library/Application Support/hostile/human-t2t-hla.fa.gz' '/Users/bede.constantinides/Research/Git/hostile/tests/data/tuberculosis_1_1.fastq.gz' | tee >(samtools view -F 2304 -c - > '/Users/bede.constantinides/Research/Git/hostile/tuberculosis_1_1.reads_in.txt') | samtools view -f 4 - | tee >(samtools view -F 2304 -c - > '/Users/bede.constantinides/Research/Git/hostile/tuberculosis_1_1.reads_out.txt') | samtools fastq --threads 4 -c 6 -0 '/Users/bede.constantinides/Research/Git/hostile/tuberculosis_1_1.clean.fastq.gz'"]
20:30:20 INFO: Cleaning…
20:30:59 DEBUG: path=PosixPath('/Users/bede.constantinides/Research/Git/hostile/tuberculosis_1_1.reads_in.txt') count=1
20:30:59 DEBUG: path=PosixPath('/Users/bede.constantinides/Research/Git/hostile/tuberculosis_1_1.reads_out.txt') count=1
20:30:59 INFO: Cleaning complete
[
  {
      "version": "1.1.0",
      "aligner": "minimap2",
      "index": "human-t2t-hla",
      "options": [],
      "fastq1_in_name": "tuberculosis_1_1.fastq.gz",
      "fastq1_in_path": "/Users/bede.constantinides/Research/Git/hostile/tests/data/tuberculosis_1_1.fastq.gz",
      "fastq1_out_name": "tuberculosis_1_1.clean.fastq.gz",
      "fastq1_out_path": "/Users/bede.constantinides/Research/Git/hostile/tuberculosis_1_1.clean.fastq.gz",
      "reads_in": 1,
      "reads_out": 1,
      "reads_removed": 0,
      "reads_removed_proportion": 0.0
  }
]
  1. Extract the bash pipeline from the stderr line with DEBUG: backend_cmds=:
minimap2 -ax map-ont -m 40 --secondary no -t 6  '/Users/bede.constantinides/Library/Application Support/hostile/human-t2t-hla.fa.gz' '/Users/bede.constantinides/Research/Git/hostile/tests/data/tuberculosis_1_1.fastq.gz' | tee >(samtools view -F 2304 -c - > '/Users/bede.constantinides/Research/Git/hostile/tuberculosis_1_1.reads_in.txt') | samtools view -f 4 - | tee >(samtools view -F 2304 -c - > '/Users/bede.constantinides/Research/Git/hostile/tuberculosis_1_1.reads_out.txt') | samtools fastq --threads 4 -c 6 -0 '/Users/bede.constantinides/Research/Git/hostile/tuberculosis_1_1.clean.fastq.gz'
  1. Replace the input FASTQ path with - and pipe your FASTQs into minimap2 stdin:
cat *.fastq.gz | minimap2 -ax map-ont -m 40 --secondary no -t 6  '/Users/bede.constantinides/Library/Application Support/hostile/human-t2t-hla.fa.gz' - |…

@bede bede added the enhancement New feature or request label Sep 9, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants