Skip to content

Commit

Permalink
merged
Browse files Browse the repository at this point in the history
  • Loading branch information
crosenth committed Oct 11, 2024
2 parents 8b0fa27 + 1f168bc commit e34280f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 3 additions & 1 deletion bin/write_seqs.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ def main(arguments):
formatter_class=argparse.RawDescriptionHelpFormatter)
parser.add_argument(
'seqtabs', nargs='*',
help='One or more headerless CSV files with columns specimen,count,seq')
help='One or more headerless CSV files '
'with columns specimen,count,seq')
parser.add_argument(
'--seqtablist', type=argparse.FileType('r'),
help='A file listing one seqtab file per line')
Expand All @@ -91,6 +92,7 @@ def main(arguments):
parser.add_argument(
'--direction',
choices=['merged', 'R1', 'R2'],
default='merged',
help='label to add to all sequence names')
parser.add_argument(
'-j', '--num-processes', type=int, default=1,
Expand Down
2 changes: 1 addition & 1 deletion main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -294,9 +294,9 @@ process dada_dereplicate {
--counts counts.csv \
--data dada.rds \
--errors ${model} \
--nthreads ${params.nproc} \
--orientation ${orientation} \
--overlaps overlaps.csv \
--nthreads ${params.nproc} \
--params ${dada_params} \
--sampleid ${sampleid} \
--seqtab seqtab.csv \
Expand Down
3 changes: 3 additions & 0 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,9 @@ profiles {

uw_batch {
workDir = 's3://molmicro-data/nextflow-workdir/dada2-nf'
params {
output = 'output'
}
process {
scratch = "/docker_scratch"
queue = 'molmicro-queue'
Expand Down

0 comments on commit e34280f

Please sign in to comment.