Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
15 | 4 | 6 | 0.965 | block |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 15 | 80 | Bio/SeqIO/_convert.py |
2 | 14 | 96 | Bio/SeqIO/_convert.py |
3 | 14 | 111 | Bio/SeqIO/_convert.py |
4 | 12 | 126 | Bio/SeqIO/_convert.py |
| ||||
"""Fast Sanger FASTQ to Sanger FASTQ conversion (PRIVATE). Useful for removing line wrapping and the redundant second identifier on the plus lines. Will check also check the quality string is valid. Avoids creating SeqRecord and Seq objects in order to speed up this conversion. """ #Map unexpected chars to null mapping = "".join([chr(0) for ascii in range(0,33)]+[chr(ascii) for ascii in range(33,127)]+[chr(0) for ascii in range(127,256)]) assert len(mapping)==256 return _fastq_generic(in_handle,out_handle,mapping) |
| ||||
"""Fast Solexa FASTQ to Solexa FASTQ conversion (PRIVATE). Useful for removing line wrapping and the redundant second identifier on the plus lines. Will check also check the quality string is valid. Avoids creating SeqRecord and Seq objects in order to speed up this conversion. """ #Map unexpected chars to null mapping = "".join([chr(0) for ascii in range(0,59)]+[chr(ascii) for ascii in range(59,127)]+[chr(0) for ascii in range(127,256)]) assert len(mapping)==256 return _fastq_generic(in_handle,out_handle,mapping) |
| ||||
"""Fast Illumina 1.3+ FASTQ to Illumina 1.3+ FASTQ conversion (PRIVATE). Useful for removing line wrapping and the redundant second identifier on the plus lines. Will check also check the quality string is valid. Avoids creating SeqRecord and Seq objects in order to speed up this conversion. """ #Map unexpected chars to null mapping = "".join([chr(0) for ascii in range(0,64)]+[chr(ascii) for ascii in range(64,127)]+[chr(0) for ascii in range(127,256)]) assert len(mapping)==256 return _fastq_generic(in_handle,out_handle,mapping) |
| ||||
"""Fast Illumina 1.3+ FASTQ to Sanger FASTQ conversion (PRIVATE). Avoids creating SeqRecord and Seq objects in order to speed up this conversion. """ #Map unexpected chars to null mapping = "".join([chr(0) for ascii in range(0,64)]+[chr(33+q) for q in range(0,62+1)]+[chr(0) for ascii in range(127,256)]) assert len(mapping)==256 return _fastq_generic(in_handle,out_handle,mapping) |
| |||
[[#variable5d75bf00]] #Map unexpected chars to null mapping = "".join([chr(0) for ascii in range(0, [[#variable5cdd6be0]])]+[chr( [[#variable30589400]]) for [[#variable2f2aae60]]in range( [[#variable71ac3280]], [[#variable5d75bf40]])]+[chr(0) for ascii in range(127,256)]) assert len(mapping)==256 return _fastq_generic(in_handle,out_handle,mapping) |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#5d75bf00]] | """Fast Sanger FASTQ to Sanger FASTQ conversion (PRIVATE). Useful for removing line wrapping and the redundant second identifier on the plus lines. Will check also check the quality string is valid. Avoids creating SeqRecord and Seq objects in order to speed up this conversion. """ |
1 | 2 | [[#5d75bf00]] | """Fast Solexa FASTQ to Solexa FASTQ conversion (PRIVATE). Useful for removing line wrapping and the redundant second identifier on the plus lines. Will check also check the quality string is valid. Avoids creating SeqRecord and Seq objects in order to speed up this conversion. """ |
1 | 3 | [[#5d75bf00]] | """Fast Illumina 1.3+ FASTQ to Illumina 1.3+ FASTQ conversion (PRIVATE). Useful for removing line wrapping and the redundant second identifier on the plus lines. Will check also check the quality string is valid. Avoids creating SeqRecord and Seq objects in order to speed up this conversion. """ |
1 | 4 | [[#5d75bf00]] | """Fast Illumina 1.3+ FASTQ to Sanger FASTQ conversion (PRIVATE). Avoids creating SeqRecord and Seq objects in order to speed up this conversion. """ |
2 | 1 | [[#5cdd6be0]] | 33 |
2 | 2 | [[#5cdd6be0]] | 59 |
2 | 3 | [[#5cdd6be0]] | 64 |
2 | 4 | [[#5cdd6be0]] | 64 |
3 | 1 | [[#30589400]] | ascii |
3 | 2 | [[#30589400]] | ascii |
3 | 3 | [[#30589400]] | ascii |
3 | 4 | [[#30589400]] | 33+q |
4 | 1 | [[#2f2aae60]] | ascii |
4 | 2 | [[#2f2aae60]] | ascii |
4 | 3 | [[#2f2aae60]] | ascii |
4 | 4 | [[#2f2aae60]] | q |
5 | 1 | [[#71ac3280]] | 33 |
5 | 2 | [[#71ac3280]] | 59 |
5 | 3 | [[#71ac3280]] | 64 |
5 | 4 | [[#71ac3280]] | 0 |
6 | 1 | [[#5d75bf40]] | 127 |
6 | 2 | [[#5d75bf40]] | 127 |
6 | 3 | [[#5d75bf40]] | 127 |
6 | 4 | [[#5d75bf40]] | 62+1 |