We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 723e182 commit 7161069Copy full SHA for 7161069
pandora.py
@@ -156,7 +156,7 @@ def check_arg_scan(args):
156
if '1' in args.steps and not ((args.mate1 and args.mate2) or args.bam or (args.single and (args.mate1 or args.bam))):
157
print('[ERROR] Need --mate1 and --mate2 arguments OR --bam argument OR --single argument for Step 1')
158
sys.exit(1)
159
- if '1' in args.steps and ((not args.refstar) or (not args.refbowtie)):
+ if '1' in args.steps and not args.bam and ((not args.refstar) or (not args.refbowtie)):
160
print('[ERROR] Need --refstar and --refbowtie arguments for Step 1')
161
162
if '3' in args.steps and (not args.blastdb):
0 commit comments