We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
works in 8.20.6
# kate: syntax python; DATASETS = '1 2 3'.split() rule mapmature_all: input: '{ds}.bam'.format(ds=ds) for ds in DATASETS rule gzip: output: '{file}.gz' input: '{file}' shell: 'gzip < {input} > {output}' rule cutadapt: output: fastq=temp('{ds}.fastq') input: '{ds}.txt' shell: 'echo hello > {output.fastq}' rule bwa_mature: output: bam='{ds}.bam' input: reads='{ds}.fastq.gz' threads: 4 shell: 'echo starting with {threads} threads; sleep 10; touch {output.bam}'
The text was updated successfully, but these errors were encountered:
Note: no parsing errors for:
rule mapmature_all: input: ('{ds}.bam'.format(ds=ds) for ds in DATASETS)
Sorry, something went wrong.
No branches or pull requests
works in 8.20.6
The text was updated successfully, but these errors were encountered: