changeset 13:fcacb3f20451 draft default tip

Uploaded
author bornea
date Wed, 24 Aug 2016 12:57:25 -0400
parents ad33728cecc0
children
files Protein_report_processing.py
diffstat 1 files changed, 2 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/Protein_report_processing.py	Tue Aug 23 20:03:58 2016 -0400
+++ b/Protein_report_processing.py	Wed Aug 24 12:57:25 2016 -0400
@@ -3,26 +3,19 @@
 from time import sleep
 
 files = sys.argv[1] # read in a string of file names seperated by ", "
-print files
 # e.g. "Default_Protein_Report.txt, Default_Protein_Report_2.txt"
 #bait = sys.argv[2] # SAINT formatted bait file
 # still need a way to match files to bait identifiers
 # or they can just be required to be put in the order of the bait file
 quant_type = sys.argv[3] # what metric to use for quantification
-print quant_type
 # "#Validated Peptides", "#Peptides", "#Unique", "#Validated PSMs", "#PSMs"
 db = sys.argv[4] # fasta database used in SearchGUI and PeptideShaker
-print db
 prey = sys.argv[5]
-print prey
 tool_path = sys.argv[7]
-print tool_path
 if db == "None":
     db = str(tool_path)  + "/SwissProt_HUMAN_2015_12.fasta"
 make_bait = sys.argv[6]
-print make_bait
 bait_bool = sys.argv[8]
-print bait_bool
 
 def bait_create(baits, infile):
     # Verifies the Baits are valid in the Scaffold file and writes the Bait.txt.
@@ -219,4 +212,5 @@
 
 os.rename("bait.txt", sys.argv[2])
 os.rename("inter.txt", sys.argv[10])
-os.rename("prey.txt", sys.argv[11])
\ No newline at end of file
+if str(prey) != "None": 
+    os.rename("prey.txt", sys.argv[11])
\ No newline at end of file