Skip to content

Commit fbb8778

Browse files
committed
fix usage to change "python2" to "python"
Our the ID scripts have long been refactored to use Python3 over Python2 but the usage was not fixed to reflect this. This commit fixes the usage statement
1 parent 263c46d commit fbb8778

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

DeletionID/delScripts/detect_deletion_BAM.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
Log2 output minimum threshold (Default -3) -l Log2_Threshold
1616
Mappability threshold to consider (Default 0.25) -M Mappability_%
1717
18-
Example: python2 detect_deletion_BAM.py -b NGS.bam -c Interval.bed -m Mappability.tab -o NGS_deletion.tab -l -2 -M 0.25
18+
Example: python detect_deletion_BAM.py -b NGS.bam -c Interval.bed -m Mappability.tab -o NGS_deletion.tab -l -2 -M 0.25
1919
"""
2020

2121
def calculateDeletion(PASS):

EpitopeID/epiScripts/calculate_EpitopeSignificance.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
This script takes in the paired-end table containing the stats from the EpitopeID pipeine and calculates
77
the Poisson p-value threshold given a minimum 2-fold enrichment over the expected tags based on the bin size.
88
9-
Example: python2 calculate_EpitopeSignificance.py -t PE_table.out -p 0.05 -c 10000 -s 12000000 -o PE_sig.out
9+
Example: python calculate_EpitopeSignificance.py -t PE_table.out -p 0.05 -c 10000 -s 12000000 -o PE_sig.out
1010
"""
1111

1212
# Main program which takes in input parameters

0 commit comments

Comments
 (0)