Mercurial > repos > devteam > tabular_to_fastq
annotate tabular_to_fastq.py @ 3:68f57cc8fad0 draft
"planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/galaxy_sequence_utils/tabular_to_fastq commit 31edb920789fbd080260f853bc856be72fa7cfa8"
author | devteam |
---|---|
date | Fri, 01 Nov 2019 13:27:30 -0400 |
parents | b8cdc0507586 |
children | 2dcfbbf9071a |
rev | line source |
---|---|
2
b8cdc0507586
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/galaxy_sequence_utils/tabular_to_fastq commit f2582539542b33240234e8ea6093e25d0aee9b6a
devteam
parents:
0
diff
changeset
|
1 # Dan Blankenberg |
b8cdc0507586
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/galaxy_sequence_utils/tabular_to_fastq commit f2582539542b33240234e8ea6093e25d0aee9b6a
devteam
parents:
0
diff
changeset
|
2 from __future__ import print_function |
b8cdc0507586
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/galaxy_sequence_utils/tabular_to_fastq commit f2582539542b33240234e8ea6093e25d0aee9b6a
devteam
parents:
0
diff
changeset
|
3 |
0 | 4 import sys |
5 | |
2
b8cdc0507586
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/galaxy_sequence_utils/tabular_to_fastq commit f2582539542b33240234e8ea6093e25d0aee9b6a
devteam
parents:
0
diff
changeset
|
6 |
0 | 7 def main(): |
8 input_filename = sys.argv[1] | |
9 output_filename = sys.argv[2] | |
2
b8cdc0507586
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/galaxy_sequence_utils/tabular_to_fastq commit f2582539542b33240234e8ea6093e25d0aee9b6a
devteam
parents:
0
diff
changeset
|
10 identifier_col = int(sys.argv[3]) - 1 |
b8cdc0507586
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/galaxy_sequence_utils/tabular_to_fastq commit f2582539542b33240234e8ea6093e25d0aee9b6a
devteam
parents:
0
diff
changeset
|
11 sequence_col = int(sys.argv[4]) - 1 |
b8cdc0507586
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/galaxy_sequence_utils/tabular_to_fastq commit f2582539542b33240234e8ea6093e25d0aee9b6a
devteam
parents:
0
diff
changeset
|
12 quality_col = int(sys.argv[5]) - 1 |
b8cdc0507586
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/galaxy_sequence_utils/tabular_to_fastq commit f2582539542b33240234e8ea6093e25d0aee9b6a
devteam
parents:
0
diff
changeset
|
13 |
b8cdc0507586
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/galaxy_sequence_utils/tabular_to_fastq commit f2582539542b33240234e8ea6093e25d0aee9b6a
devteam
parents:
0
diff
changeset
|
14 max_col = max(identifier_col, sequence_col, quality_col) |
0 | 15 num_reads = None |
16 skipped_lines = 0 | |
2
b8cdc0507586
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/galaxy_sequence_utils/tabular_to_fastq commit f2582539542b33240234e8ea6093e25d0aee9b6a
devteam
parents:
0
diff
changeset
|
17 out = open(output_filename, 'w') |
b8cdc0507586
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/galaxy_sequence_utils/tabular_to_fastq commit f2582539542b33240234e8ea6093e25d0aee9b6a
devteam
parents:
0
diff
changeset
|
18 for num_reads, line in enumerate(open(input_filename)): |
b8cdc0507586
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/galaxy_sequence_utils/tabular_to_fastq commit f2582539542b33240234e8ea6093e25d0aee9b6a
devteam
parents:
0
diff
changeset
|
19 fields = line.rstrip('\n\r').split('\t') |
b8cdc0507586
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/galaxy_sequence_utils/tabular_to_fastq commit f2582539542b33240234e8ea6093e25d0aee9b6a
devteam
parents:
0
diff
changeset
|
20 if len(fields) > max_col: |
b8cdc0507586
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/galaxy_sequence_utils/tabular_to_fastq commit f2582539542b33240234e8ea6093e25d0aee9b6a
devteam
parents:
0
diff
changeset
|
21 out.write("@%s\n%s\n+\n%s\n" % (fields[identifier_col], fields[sequence_col], fields[quality_col])) |
0 | 22 else: |
23 skipped_lines += 1 | |
2
b8cdc0507586
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/galaxy_sequence_utils/tabular_to_fastq commit f2582539542b33240234e8ea6093e25d0aee9b6a
devteam
parents:
0
diff
changeset
|
24 |
0 | 25 out.close() |
26 if num_reads is None: | |
2
b8cdc0507586
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/galaxy_sequence_utils/tabular_to_fastq commit f2582539542b33240234e8ea6093e25d0aee9b6a
devteam
parents:
0
diff
changeset
|
27 print("Input was empty.") |
0 | 28 else: |
2
b8cdc0507586
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/galaxy_sequence_utils/tabular_to_fastq commit f2582539542b33240234e8ea6093e25d0aee9b6a
devteam
parents:
0
diff
changeset
|
29 print("%i tabular lines were written as FASTQ reads. Be sure to use the FASTQ Groomer tool on this output before further analysis." % (num_reads + 1 - skipped_lines)) |
b8cdc0507586
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/galaxy_sequence_utils/tabular_to_fastq commit f2582539542b33240234e8ea6093e25d0aee9b6a
devteam
parents:
0
diff
changeset
|
30 |
b8cdc0507586
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/galaxy_sequence_utils/tabular_to_fastq commit f2582539542b33240234e8ea6093e25d0aee9b6a
devteam
parents:
0
diff
changeset
|
31 |
b8cdc0507586
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/galaxy_sequence_utils/tabular_to_fastq commit f2582539542b33240234e8ea6093e25d0aee9b6a
devteam
parents:
0
diff
changeset
|
32 if __name__ == "__main__": |
b8cdc0507586
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/galaxy_sequence_utils/tabular_to_fastq commit f2582539542b33240234e8ea6093e25d0aee9b6a
devteam
parents:
0
diff
changeset
|
33 main() |