Skip to content

Commit

Permalink
Pooled Set flag to skip reporting problematic regions
Browse files Browse the repository at this point in the history
  • Loading branch information
kclem committed Apr 7, 2020
1 parent 6c3aeff commit 7fb477f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CRISPResso2/CRISPRessoPooledCORE.py
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ def main():
parser.add_argument('--bowtie2_options_string', type=str, help='Override options for the Bowtie2 alignment command',default=' -k 1 --end-to-end -N 0 --np 0 ')
parser.add_argument('--min_reads_to_use_region', type=float, help='Minimum number of reads that align to a region to perform the CRISPResso analysis', default=1000)
parser.add_argument('--skip_failed', help='Continue with pooled analysis even if one sample fails',action='store_true')
parser.add_argument('--skip_reporting_problematic_regions',help='Skip reporting of problematic regions. By default, when both amplicons (-f) and genome (-x) are provided, problematic reads that align to the genome but to positions other than where the amplicons align are reported as problematic')
parser.add_argument('--skip_reporting_problematic_regions',help='Skip reporting of problematic regions. By default, when both amplicons (-f) and genome (-x) are provided, problematic reads that align to the genome but to positions other than where the amplicons align are reported as problematic',action='store_true')
parser.add_argument('--crispresso_command', help='CRISPResso command to call',default='CRISPResso')

args = parser.parse_args()
Expand Down
2 changes: 1 addition & 1 deletion CRISPResso2/CRISPRessoShared.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
else:
import cPickle as cp #python 2.7

__version__ = "2.0.33"
__version__ = "2.0.34"

###EXCEPTIONS############################
class FlashException(Exception):
Expand Down

0 comments on commit 7fb477f

Please sign in to comment.