Skip to content

Commit

Permalink
update v1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
RemiAllio committed May 27, 2020
1 parent bc31b48 commit 0d2ba3b
Show file tree
Hide file tree
Showing 78 changed files with 4 additions and 4 deletions.
Binary file modified Bio/Align/Generic.pyc
Binary file not shown.
Binary file modified Bio/Align/__init__.pyc
Binary file not shown.
Binary file modified Bio/AlignIO/ClustalIO.pyc
Binary file not shown.
Binary file modified Bio/AlignIO/EmbossIO.pyc
Binary file not shown.
Binary file modified Bio/AlignIO/FastaIO.pyc
Binary file not shown.
Binary file modified Bio/AlignIO/Interfaces.pyc
Binary file not shown.
Binary file modified Bio/AlignIO/NexusIO.pyc
Binary file not shown.
Binary file modified Bio/AlignIO/PhylipIO.pyc
Binary file not shown.
Binary file modified Bio/AlignIO/StockholmIO.pyc
Binary file not shown.
Binary file modified Bio/AlignIO/__init__.pyc
Binary file not shown.
Binary file modified Bio/Alphabet/IUPAC.pyc
Binary file not shown.
Binary file modified Bio/Alphabet/__init__.pyc
Binary file not shown.
Binary file modified Bio/Application/__init__.pyc
Binary file not shown.
Binary file modified Bio/Blast/NCBIStandalone.pyc
Binary file not shown.
Binary file modified Bio/Blast/Record.pyc
Binary file not shown.
Binary file modified Bio/Blast/__init__.pyc
Binary file not shown.
Binary file modified Bio/Data/CodonTable.pyc
Binary file not shown.
Binary file modified Bio/Data/IUPACData.pyc
Binary file not shown.
Binary file modified Bio/Data/SCOPData.pyc
Binary file not shown.
Binary file modified Bio/Data/__init__.pyc
Binary file not shown.
Binary file modified Bio/File.pyc
Binary file not shown.
Binary file modified Bio/GenBank/Scanner.pyc
Binary file not shown.
Binary file modified Bio/GenBank/__init__.pyc
Binary file not shown.
Binary file modified Bio/GenBank/utils.pyc
Binary file not shown.
Binary file modified Bio/Nexus/Nexus.pyc
Binary file not shown.
Binary file modified Bio/Nexus/Nodes.pyc
Binary file not shown.
Binary file modified Bio/Nexus/Trees.pyc
Binary file not shown.
Binary file modified Bio/Nexus/__init__.pyc
Binary file not shown.
Binary file modified Bio/ParserSupport.pyc
Binary file not shown.
Binary file modified Bio/SearchIO/BlastIO/__init__.pyc
Binary file not shown.
Binary file modified Bio/SearchIO/BlastIO/blast_tab.pyc
Binary file not shown.
Binary file modified Bio/SearchIO/BlastIO/blast_text.pyc
Binary file not shown.
Binary file modified Bio/SearchIO/BlastIO/blast_xml.pyc
Binary file not shown.
Binary file modified Bio/SearchIO/__init__.pyc
Binary file not shown.
Binary file modified Bio/SearchIO/_index.pyc
Binary file not shown.
Binary file modified Bio/SearchIO/_model/__init__.pyc
Binary file not shown.
Binary file modified Bio/SearchIO/_model/_base.pyc
Binary file not shown.
Binary file modified Bio/SearchIO/_model/hit.pyc
Binary file not shown.
Binary file modified Bio/SearchIO/_model/hsp.pyc
Binary file not shown.
Binary file modified Bio/SearchIO/_model/query.pyc
Binary file not shown.
Binary file modified Bio/SearchIO/_utils.pyc
Binary file not shown.
Binary file modified Bio/Seq.pyc
Binary file not shown.
Binary file modified Bio/SeqFeature.pyc
Binary file not shown.
Binary file modified Bio/SeqIO/AbiIO.pyc
Binary file not shown.
Binary file modified Bio/SeqIO/AceIO.pyc
Binary file not shown.
Binary file modified Bio/SeqIO/FastaIO.pyc
Binary file not shown.
Binary file modified Bio/SeqIO/IgIO.pyc
Binary file not shown.
Binary file modified Bio/SeqIO/InsdcIO.pyc
Binary file not shown.
Binary file modified Bio/SeqIO/Interfaces.pyc
Binary file not shown.
Binary file modified Bio/SeqIO/PdbIO.pyc
Binary file not shown.
Binary file modified Bio/SeqIO/PhdIO.pyc
Binary file not shown.
Binary file modified Bio/SeqIO/PirIO.pyc
Binary file not shown.
Binary file modified Bio/SeqIO/QualityIO.pyc
Binary file not shown.
Binary file modified Bio/SeqIO/SeqXmlIO.pyc
Binary file not shown.
Binary file modified Bio/SeqIO/SffIO.pyc
Binary file not shown.
Binary file modified Bio/SeqIO/SwissIO.pyc
Binary file not shown.
Binary file modified Bio/SeqIO/TabIO.pyc
Binary file not shown.
Binary file modified Bio/SeqIO/UniprotIO.pyc
Binary file not shown.
Binary file modified Bio/SeqIO/__init__.pyc
Binary file not shown.
Binary file modified Bio/SeqRecord.pyc
Binary file not shown.
Binary file modified Bio/SeqUtils/__init__.pyc
Binary file not shown.
Binary file modified Bio/Sequencing/Ace.pyc
Binary file not shown.
Binary file modified Bio/Sequencing/Phd.pyc
Binary file not shown.
Binary file modified Bio/Sequencing/__init__.pyc
Binary file not shown.
Binary file modified Bio/SwissProt/__init__.pyc
Binary file not shown.
Binary file modified Bio/__init__.pyc
Binary file not shown.
Binary file modified Bio/_py3k/__init__.pyc
Binary file not shown.
Binary file modified Bio/_utils.pyc
Binary file not shown.
Binary file modified Bio/bgzf.pyc
Binary file not shown.
Binary file modified FirstBuildChecker.pyc
Binary file not shown.
Binary file modified circularizationCheck.pyc
Binary file not shown.
Binary file modified genbankOutput.pyc
Binary file not shown.
Binary file modified geneChecker.pyc
Binary file not shown.
8 changes: 4 additions & 4 deletions mitofinder
Original file line number Diff line number Diff line change
Expand Up @@ -1512,13 +1512,13 @@ if __name__ == "__main__":
#sort gff
pathlist = glob.glob(pathOfFinalResults+"/*.gb")
if len(pathlist) == 1 :
for f in glob.glob(pathOfFinalResults+"/*_raw.gff"):
for f in sorted(glob.glob(pathOfFinalResults+"/*_raw.gff"), key=os.path.getmtime):
command = module_dir+"/sort_gff.py " + f + " " + args.processName +".1 " + str(args.organismType) + " " + str(args.rename)
args1 = shlex.split(command)
sort_gff = Popen(args1, cwd=pathOfFinalResults, stdout=open('geneChecker.log', 'a'), stderr=open('geneChecker_erreur.log', 'a'))
sort_gff.wait()
else:
for f in glob.glob(pathOfFinalResults+"/*_raw.gff"):
for f in sorted(glob.glob(pathOfFinalResults+"/*_raw.gff"), key=os.path.getmtime):
command = module_dir+"/sort_gff.py " + f + " " + args.processName +"."+ f.split("_raw")[0][-1] + " " + str(args.organismType) + " " + str(args.rename)
args1 = shlex.split(command)
sort_gff = Popen(args1, cwd=pathOfFinalResults, stdout=open('geneChecker.log', 'a'), stderr=open('geneChecker_erreur.log', 'a'))
Expand All @@ -1536,7 +1536,7 @@ if __name__ == "__main__":
shutil.copy(f+"_AA.fasta",pathOfFinalResults+"/"+args.processName+"_final_genes_AA.fasta")
shutil.copy(f+"_NT.fasta",pathOfFinalResults+"/"+args.processName+"_final_genes_NT.fasta")
if c > 1 and args.numt == 0:
for f in glob.glob(pathOfFinalResults+"/*_genes_NT.fasta"):
for f in sorted(glob.glob(pathOfFinalResults+"/*_genes_NT.fasta"), key=os.path.getmtime):
for name, seq in read_fasta(open(f,'r')):
gene=name.split("@")[1]
if dico_genes.has_key(gene):
Expand All @@ -1561,7 +1561,7 @@ if __name__ == "__main__":
final_fasta.close()

dico_genes={}
for f in glob.glob(pathOfFinalResults+"/*_genes_AA.fasta"):
for f in sorted(glob.glob(pathOfFinalResults+"/*_genes_AA.fasta"), key=os.path.getmtime):
for name, seq in read_fasta(open(f,'r')):
gene=name.split("@")[1]
if dico_genes.has_key(gene):
Expand Down
Binary file modified runIDBA.pyc
Binary file not shown.
Binary file modified runMegahit.pyc
Binary file not shown.
Binary file modified runMetaspades.pyc
Binary file not shown.
Binary file modified tRNAscanChecker.pyc
Binary file not shown.

0 comments on commit 0d2ba3b

Please sign in to comment.