annotate preprocessing.xml @ 24:431aebd93843 draft default tip

Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
author nikos
date Wed, 05 Aug 2015 09:21:02 -0400
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
24
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
1 <tool id="rna_probing_preprocessing" version="1.0.0" name="Preprocessing" force_history_refresh="True">
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
2 <description>RNA probing data</description>
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
3
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
4 <requirements>
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
5 <requirement type="package" version="4.1.0">gnu_awk</requirement>
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
6 <requirement type="set_environment">RNA_RPOBING_SCRIPT_PATH</requirement>
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
7 </requirements>
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
8
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
9 <command interpreter="bash">
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
10 preprocessing.sh
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
11
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
12 ## check if paired-end
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
13 #if str( $library.type ) == "paired"
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
14 -2 $library.input2
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
15 #end if
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
16
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
17 ## Inputs
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
18 -1 $library.input1
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
19
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
20 ## Barcode sequence
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
21 -b '$library.barcode_seq'
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
22
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
23 ## Trimming length
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
24 -t $trim
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
25 </command>
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
26
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
27 <inputs>
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
28 <!-- single/paired -->
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
29 <conditional name="library">
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
30 <param name="type" type="select" label="Is this single or paired-end sequencing?">
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
31 <option value="single">Single-end</option>
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
32 <option value="paired">Paired-end</option>
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
33 </param>
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
34 <when value="single">
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
35 <param format="fastqsanger" name="input1" type="data" label="FASTQ file" help="Must have Sanger-scaled quality values (fastqsanger)." />
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
36 <param name="barcode_seq" type="text" size="20" label="Barcode sequence" help="Reads that do not start with the signature will be removed. Use IUPAC alphabet, e.g. NNNNXRTYNN as in the randomized part of the ligation adapter." >
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
37 <!-- <validator type="empty_field" message="Specify the Barcode sequence" /> -->
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
38 </param>
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
39 </when>
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
40 <when value="paired">
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
41 <param format="fastqsanger" name="input1" type="data" label="FASTQ file (read 1)" help="Must have Sanger-scaled quality values (fastqsanger)." />
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
42 <param format="fastqsanger" name="input2" type="data" label="FASTQ file (read 2)" help="Must have Sanger-scaled quality values (fastqsanger)." />
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
43 <param name="barcode_seq" type="text" size="20" label="Barcode sequence" help="Reads that do not start with the signature will be removed. Use IUPAC alphabet, e.g. NNNNXRTYNN as in the randomized part of the ligation adapter." >
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
44 <!-- <validator type="empty_field" message="Specify the Barcode sequence" /> -->
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
45 </param>
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
46 </when>
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
47 </conditional>
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
48 <param name="trim" type="integer" min="0" optional="true" value="15" label="3' trimming length" help="Number of random bases for random priming, will be removed as they are likely to differ from a template." />
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
49
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
50 </inputs>
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
51
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
52 <outputs>
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
53 <data format="fastqsanger" name="output1" label="${tool.name} on ${on_string}: Read 1" from_work_dir="output_dir/read1.fastq" />
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
54 <data format="fastqsanger" name="output2" label="${tool.name} on ${on_string}: Read 2" from_work_dir="output_dir/read2.fastq" >
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
55 <filter> library['type'] == "paired"</filter>
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
56 </data>
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
57 <data format="tabular" name="barcodes" label="${tool.name} on ${on_string}: Barcodes" from_work_dir="output_dir/barcodes.txt">
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
58 <!-- <filter> library['barcode_seq'] != '' </filter> -->
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
59 </data>
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
60 </outputs>
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
61
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
62 <tests>
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
63 <test>
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
64 <param name="input1" value="reads1.fastq"/>
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
65 <param name="input2" value="reads2.fastq"/>
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
66 <param name="barcode_seq" value="NNNNNNN"/>
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
67 <param name="trim" value="15"/>
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
68 <output name="output1" file="reads1_preprocessed.fastq"/>
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
69 <output name="output2" file="reads2_preprocessed.fastq"/>
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
70 <output name="barcodes" file="barcodes.txt"/>
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
71 </test>
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
72 </tests>
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
73
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
74 <help>
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
75 **What it does**
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
76
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
77 *Preprocessing* tool removes and saves the random barcodes sequences, if they were ligated to 3’ ends of cDNA, in a separate dataset to be used in downstream analysis. Additionally to debarcoding, it trims 1) the 5’ end of the second-in-pair reads to remove the reverse transcription primer derived sequence and 2) 3’ end of both reads to remove possible random barcode incorporation in the second-in-pair read and random primer in first-in-pair read.
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
78
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
79 ------
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
80
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
81 **Examples**
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
82
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
83 Sample input files (quality scores omited)::
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
84
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
85 * Read1
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
86 @DJG83KN1:255:C3U57ACXX:3:1101:1215:2296 1:N:0:ATCACG
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
87 TTCGCACAACATNATGGAGGCTTCACGGTACAGAACGAGGCCAGCAAATACCAAGTCTCAGTGAACAAATACAAAGGGACGGCTGGCAACGCCCTCAT
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
88 @DJG83KN1:255:C3U57ACXX:3:1101:1142:2461 1:N:0:ATCACG
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
89 ACCCCGCATCAAATTGGGAACTACTTCCAGCAGTTGTTAGACTTGGGCTCTGGCAGCCCCTTGGAGTGGAGGGACTTGCAGCCCTTCTTATCAGGTCT
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
90
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
91 * Read2
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
92 @DJG83KN1:255:C3U57ACXX:3:1101:1215:2296 2:N:0:ATCACG
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
93 CACAAATCTGCCGTTTGGATTGGCTGCATGGCATCTGTTATACCACCAGCCACCACCATCTTCTTTGGAGCACTGTTTTCTTGGATCCGTAGTTACCC
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
94 @DJG83KN1:255:C3U57ACXX:3:1101:1142:2461 2:N:0:ATCACG
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
95 GTTGGGGGTGTGGGGAAAAAAATAAAAATCGTGAGAAGTTTTAAGACTATGTCACAAAAATGGCTTTAATTATACCATCAAACAGAAACCACCAATTG
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
96
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
97 Run 1 - Barcode Sequence = '', Trimming length = 10::
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
98
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
99 * Read1
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
100 @DJG83KN1:255:C3U57ACXX:3:1101:1215:2296
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
101 TTCGCACAACATNATGGAGGCTTCACGGTACAGAACGAGGCCAGCAAATACCAAGTCTCAGTGAACAAATACAAAGGGACGGCTGGCA
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
102 @DJG83KN1:255:C3U57ACXX:3:1101:1142:2461
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
103 ACCCCGCATCAAATTGGGAACTACTTCCAGCAGTTGTTAGACTTGGGCTCTGGCAGCCCCTTGGAGTGGAGGGACTTGCAGCCCTTCT
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
104
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
105 * Read2
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
106 @DJG83KN1:255:C3U57ACXX:3:1101:1215:2296
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
107 CCGTTTGGATTGGCTGCATGGCATCTGTTATACCACCAGCCACCACCATCTTCTTTGGAGCACTGTTTTCTTGGATCCGTAGTTACCC
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
108 @DJG83KN1:255:C3U57ACXX:3:1101:1142:2461
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
109 TGGGGAAAAAAATAAAAATCGTGAGAAGTTTTAAGACTATGTCACAAAAATGGCTTTAATTATACCATCAAACAGAAACCACCAATTG
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
110
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
111 Run 2 - Barcode Sequence = 'NNNNNNN', Trimming length = 10::
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
112
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
113 * Read1
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
114 @DJG83KN1:255:C3U57ACXX:3:1101:1215:2296
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
115 AACATNATGGAGGCTTCACGGTACAGAACGAGGCCAGCAAATACCAAGTCTCAGTGAACAAATACAAAGGGACGGCTGGCA
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
116 @DJG83KN1:255:C3U57ACXX:3:1101:1142:2461
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
117 ATCAAATTGGGAACTACTTCCAGCAGTTGTTAGACTTGGGCTCTGGCAGCCCCTTGGAGTGGAGGGACTTGCAGCCCTTCT
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
118
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
119 * Read2
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
120 @DJG83KN1:255:C3U57ACXX:3:1101:1215:2296
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
121 CCGTTTGGATTGGCTGCATGGCATCTGTTATACCACCAGCCACCACCATCTTCTTTGGAGCACTGTTTTCTTGGATCCGTA
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
122 @DJG83KN1:255:C3U57ACXX:3:1101:1142:2461
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
123 TGGGGAAAAAAATAAAAATCGTGAGAAGTTTTAAGACTATGTCACAAAAATGGCTTTAATTATACCATCAAACAGAAACCA
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
124
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
125 * Barcodes
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
126
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
127 @DJG83KN1:255:C3U57ACXX:3:1101:1215:2296 TTCGCAC
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
128 @DJG83KN1:255:C3U57ACXX:3:1101:1142:2461 ACCCCGC
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
129
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
130 </help>
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
131
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
132 <citations>
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
133 <citation type="doi">10.1093/nar/gku167</citation>
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
134 </citations>
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
135
431aebd93843 Fixed a bug in k2n.R where the function k2n_calc() would result in an error for single-end read files.
nikos
parents:
diff changeset
136 </tool>