Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/BioWilko/scylla into main
Browse files Browse the repository at this point in the history
  • Loading branch information
rmcolq committed Jun 21, 2023
2 parents 194a852 + 6ac4a84 commit 9ff72e7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions bin/extract_kraken_reads.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def get_bracken_hierarchy(kraken_file, bracken_file, max_human=None):
"ERROR: found %i human reads, max allowed is %i\n"
% (num_direct, max_human)
)
# sys.exit(2)
sys.exit(2)
continue

entries[ncbi] = {
Expand Down Expand Up @@ -534,7 +534,7 @@ def main():
args.reads2,
args.prefix,
max_human=args.max_human,
names = args.taxid,
names=args.taxid,
target_ranks=target_ranks,
min_count=args.min_count,
min_count_descendants=args.min_count_descendants,
Expand Down
6 changes: 3 additions & 3 deletions modules/extract_taxa.nf
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
// in config so could be good dehuman sanity check
process extract_paired_reads {

label 'process_medium'
label 'process_high'

publishDir path: "${params.out_dir}/${unique_id}/reads_by_taxa", mode: 'copy'

Expand Down Expand Up @@ -50,13 +50,13 @@ process extract_paired_reads {

process extract_reads {

label 'process_medium'
label 'process_high'

publishDir path: "${params.out_dir}/${unique_id}/reads_by_taxa", mode: 'copy'

conda 'bioconda::biopython=1.78 bioconda::tabix=1.11'
container "biowilko/scylla@${params.wf.container_sha}"

input:
val unique_id
path fastq
Expand Down

0 comments on commit 9ff72e7

Please sign in to comment.