集册 Java实例教程 将FASTQ字符串转换为phred分数的字节数组。

将FASTQ字符串转换为phred分数的字节数组。

欢马劈雪     最近更新时间:2020-01-02 10:19:05

469
将FASTQ字符串转换为phred分数的字节数组。
/** 
来 自 
时 代 J a v a - N o w J a v a . c o m
**/

/*

 * Copyright (c) 2014. Real Time Genomics Limited.

 *

 * Use of this source code is bound by the Real Time Genomics Limited Software Licence Agreement

 * for Academic Non-commercial Research Purposes only.

 *

 * If you did not receive a license accompanying this file, a copy must first be obtained by email

 * from support@realtimegenomics.com.  On downloading, using and/or continuing to use this source

 * code you accept the terms of that license agreement and any amendments to those terms that may

 * be made from time to time by Real Time Genomics Limited.

 */

//package com.nowjava;


public class Main {

    /**

     * Convert a FASTQ string to a byte array of phred scores.

     * @param string the quality string to convert

     * @return byte array of phred scores

     */

    public static byte[] fastqToPhred(final String string) {

        final byte[] bytes = new byte[string.length()];

        
展开阅读全文