File: fix_path_interpreter

package info (click to toggle)
obitools 1.2.13%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 4,652 kB
  • sloc: python: 18,199; ansic: 1,542; makefile: 98
file content (315 lines) | stat: -rw-r--r-- 8,939 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
Subject: wrong interpreter path
Description: use Debian Python
Author: Olivier Sallou <osallou@debian.org>
Last-Updated: 2015-04-30
Forwarded: no
--- a/src/extractreads.py
+++ b/src/extractreads.py
@@ -1,3 +1,4 @@
+#!/usr/bin/python3
 '''
 Created on 9 juin 2012
 
--- a/src/extractreads2.py
+++ b/src/extractreads2.py
@@ -1,3 +1,4 @@
+#!/usr/bin/python3
 '''
 Created on 9 juin 2012
 
--- a/src/ali2consensus.py
+++ b/src/ali2consensus.py
@@ -1,4 +1,4 @@
-#!/usr/local/bin/python
+#!/usr/bin/python3
 
 '''
 Created on 30 sept. 2011
--- a/src/ecodbtaxstat.py
+++ b/src/ecodbtaxstat.py
@@ -1,4 +1,4 @@
-#!/usr/local/bin/python
+#!/usr/bin/python3
 '''
 :py:mod:`ecodbtaxstat`: gives taxonomic rank frequency of a given ``ecopcr`` database   
 =====================================================================================
--- a/src/ecotaxspecificity.py
+++ b/src/ecotaxspecificity.py
@@ -1,4 +1,4 @@
-#!/usr/local/bin/python
+#!/usr/bin/python3
 '''
 :py:mod:`ecotaxspecificity`: Evaluates barcode resolution
 =========================================================
--- a/src/ecotaxstat.py
+++ b/src/ecotaxstat.py
@@ -1,4 +1,4 @@
-#!/usr/local/bin/python
+#!/usr/bin/python3
 '''
 :py:mod:`ecotaxstat` : getting the coverage of an ecoPCR output compared to the original ecoPCR database
 ========================================================================================================
--- a/src/illuminapairedend.py
+++ b/src/illuminapairedend.py
@@ -1,4 +1,4 @@
-#!/usr/local/bin/python
+#!/usr/bin/python3
 '''
 :py:mod:`illuminapairedend`: aligns paired-end Illumina reads
 =============================================================
--- a/src/ngsfilter.py
+++ b/src/ngsfilter.py
@@ -1,4 +1,4 @@
-#!/usr/local/bin/python
+#!/usr/bin/python3
 '''
 :py:mod:`ngsfilter` : Assigns sequence records to the corresponding experiment/sample based on DNA tags and primers
 ===================================================================================================================
--- a/src/obiaddtaxids.py
+++ b/src/obiaddtaxids.py
@@ -1,4 +1,4 @@
-#!/usr/local/bin/python
+#!/usr/bin/python3
 '''
 :py:mod:`obiaddtaxids`: adds *taxids* to sequence records using an ecopcr database
 ==================================================================================
--- a/src/obiannotate.py
+++ b/src/obiannotate.py
@@ -1,4 +1,4 @@
-#!/usr/local/bin/python
+#!/usr/bin/python3
 
 '''
 :py:mod:`obiannotate`: adds/edits sequence record annotations
--- a/src/obiclean.py
+++ b/src/obiclean.py
@@ -1,4 +1,4 @@
-#!/usr/local/bin/python
+#!/usr/bin/python3
 
 '''
 :py:mod:`obiclean`: tags a set of sequences for PCR/sequencing errors identification 
--- a/src/obicomplement.py
+++ b/src/obicomplement.py
@@ -1,4 +1,4 @@
-#!/usr/local/bin/python
+#!/usr/bin/python3
 """
 :py:mod:`obicomplement`: reverse-complements sequences
 ======================================================
--- a/src/obiconvert.py
+++ b/src/obiconvert.py
@@ -1,4 +1,4 @@
-#!/usr/local/bin/python
+#!/usr/bin/python3
 '''
 :py:mod:`obiconvert`: converts sequence files to different output formats
 =========================================================================
--- a/src/obicount.py
+++ b/src/obicount.py
@@ -1,4 +1,4 @@
-#!/usr/local/bin/python
+#!/usr/bin/python3
 '''
 :py:mod:`obicount`: counts the number of sequence records 
 =========================================================
--- a/src/obicut.py
+++ b/src/obicut.py
@@ -1,4 +1,4 @@
-#!/usr/local/bin/python
+#!/usr/bin/python3
 '''
 :py:mod:`obicut`: trims sequences
 =================================
--- a/src/obidistribute.py
+++ b/src/obidistribute.py
@@ -1,4 +1,4 @@
-#!/usr/local/bin/python
+#!/usr/bin/python3
 '''
 :py:mod:`obidistribute`: Distributes sequence records over several sequence records files 
 =========================================================================================
--- a/src/obiextract.py
+++ b/src/obiextract.py
@@ -1,4 +1,4 @@
-#!/usr/local/bin/python
+#!/usr/bin/python3
 '''
 :py:mod:`obiextract`: extract samples from a dataset 
 ====================================================
--- a/src/obigrep.py
+++ b/src/obigrep.py
@@ -1,4 +1,4 @@
-#!/usr/local/bin/python
+#!/usr/bin/python3
 '''
 :py:mod:`obigrep`: filters sequence file 
 ========================================
--- a/src/obihead.py
+++ b/src/obihead.py
@@ -1,4 +1,4 @@
-#!/usr/local/bin/python
+#!/usr/bin/python3
 '''
 :py:mod:`obihead`: extracts the first sequence records
 ======================================================
--- a/src/obijoinpairedend.py
+++ b/src/obijoinpairedend.py
@@ -1,4 +1,4 @@
-#!/usr/local/bin/python
+#!/usr/bin/python3
 '''
 :py:mod:`obijoinpairedend`: Joins paired-end reads
 ==================================================
--- a/src/obipr2.py
+++ b/src/obipr2.py
@@ -1,4 +1,4 @@
-#!/usr/local/bin/python
+#!/usr/bin/python3
 '''
 :py:mod:`obipr2`: converts silva database into an ecoPCR database
 =================================================================
--- a/src/obisample.py
+++ b/src/obisample.py
@@ -1,4 +1,4 @@
-#!/usr/local/bin/python
+#!/usr/bin/python3
 '''
 :py:mod:`obisample`: randomly resamples sequence records
 ========================================================
--- a/src/obiselect.py
+++ b/src/obiselect.py
@@ -1,4 +1,4 @@
-#!/usr/local/bin/python
+#!/usr/bin/python3
 """
 :py:mod:`obiselect` : selects representative sequence records
 =============================================================
--- a/src/obisilva.py
+++ b/src/obisilva.py
@@ -1,4 +1,4 @@
-#!/usr/local/bin/python
+#!/usr/bin/python3
 '''
 :py:mod:`obisilva`: converts silva database into an ecoPCR database
 ===================================================================
--- a/src/obisort.py
+++ b/src/obisort.py
@@ -1,4 +1,4 @@
-#!/usr/local/bin/python
+#!/usr/bin/python3
 '''
 :py:mod:`obisort`: Sorts sequence records according to the value of a given attribute 
 =====================================================================================
--- a/src/obisplit.py
+++ b/src/obisplit.py
@@ -1,4 +1,4 @@
-#!/usr/local/bin/python
+#!/usr/bin/python3
 '''
 :py:mod:`obisplit`: Splits a sequence file in a set of subfiles
 ===============================================================
--- a/src/obistat.py
+++ b/src/obistat.py
@@ -1,4 +1,4 @@
-#!/usr/local/bin/python
+#!/usr/bin/python3
 '''
 :py:mod:`obistat`: computes basic statistics for attribute values 
 =================================================================
--- a/src/obitab.py
+++ b/src/obitab.py
@@ -1,4 +1,4 @@
-#!/usr/local/bin/python
+#!/usr/bin/python3
 '''
 :py:mod:`obitab`: converts a sequence file to a tabular file
 ============================================================
--- a/src/obitail.py
+++ b/src/obitail.py
@@ -1,4 +1,4 @@
-#!/usr/local/bin/python
+#!/usr/bin/python3
 '''
 :py:mod:`obitail`: extracts the last sequence records
 =====================================================
--- a/src/obitaxonomy.py
+++ b/src/obitaxonomy.py
@@ -1,4 +1,4 @@
-#!/usr/local/bin/python
+#!/usr/bin/python3
 '''
 :py:mod:`obitaxonomy`: manages taxonomic databases
 ==================================================
--- a/src/obiuniq.py
+++ b/src/obiuniq.py
@@ -1,4 +1,4 @@
-#!/usr/local/bin/python
+#!/usr/bin/python3
 '''
 :py:mod:`obiuniq`: groups and dereplicates sequences  
 ====================================================
--- a/src/oligotag.py
+++ b/src/oligotag.py
@@ -1,4 +1,4 @@
-#!/usr/local/bin/python
+#!/usr/bin/python3
 '''
 :py:mod:`oligotag`: Designs a set of oligonucleotides with specified properties
 ===============================================================================
--- a/src/obitools/barcodecoverage/calcBc.py
+++ b/src/obitools/barcodecoverage/calcBc.py
@@ -1,4 +1,4 @@
-#!/usr/local/bin/python
+#!/usr/bin/python3
 '''
 Created on 24 nov. 2011
 
--- a/src/obitools/barcodecoverage/drawBcTree.py
+++ b/src/obitools/barcodecoverage/drawBcTree.py
@@ -1,4 +1,4 @@
-#!/usr/local/bin/python
+#!/usr/bin/python3
 '''
 Created on 25 nov. 2011
 
--- a/src/obitools/barcodecoverage/findErrors.py
+++ b/src/obitools/barcodecoverage/findErrors.py
@@ -1,4 +1,4 @@
-#!/usr/local/bin/python
+#!/usr/bin/python3
 '''
 Created on 24 nov. 2011
 
--- a/src/obitools/barcodecoverage/readFiles.py
+++ b/src/obitools/barcodecoverage/readFiles.py
@@ -1,4 +1,4 @@
-#!/usr/local/bin/python
+#!/usr/bin/python3
 '''
 Created on 23 nov. 2011
 
--- a/src/obitools/barcodecoverage/writeBcTree.py
+++ b/src/obitools/barcodecoverage/writeBcTree.py
@@ -1,4 +1,4 @@
-#!/usr/local/bin/python
+#!/usr/bin/python3
 '''
 Created on 25 nov. 2011
 
--- a/src/obitools/solexaPairEnd.py
+++ b/src/obitools/solexaPairEnd.py
@@ -1,4 +1,4 @@
-#!/usr/local/bin/python
+#!/usr/bin/python3
 '''
 Created on 30 dec. 2009
 
--- a/src/ecotag.py
+++ b/src/ecotag.py
@@ -1,4 +1,4 @@
-#!/usr/local/OBITools-1.1.22/bin/python
+#!/usr/bin/python3
 '''
 :py:mod:`ecotag`: assigns sequences to taxa
 ===========================================