/* * Copyright 2015-2016 OpenCB * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.opencb.opencga.storage.hadoop.variant; import org.apache.commons.lang.StringUtils; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.hbase.io.ImmutableBytesWritable; import org.apache.hadoop.hbase.util.Bytes; import org.apache.phoenix.schema.*; import org.apache.phoenix.schema.types.PUnsignedInt; import org.apache.phoenix.schema.types.PVarchar; import org.junit.Assert; import org.junit.Before; import org.junit.Test; import org.opencb.biodata.models.variant.Variant; import java.sql.SQLException; import java.util.Arrays; import java.util.Collections; import java.util.List; import static org.junit.Assert.assertArrayEquals; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertTrue; /** * Created on 20/11/15 * * @author Jacobo Coll <jacobo167@gmail.com> */ public class GenomeHelperTest { public static final int CHUNK_SIZE = 200; private GenomeHelper genomeHelper; @Before public void setUp() throws Exception { Configuration conf = new Configuration(); GenomeHelper.setChunkSize(conf, CHUNK_SIZE); genomeHelper = new GenomeHelper(conf); } @Test public void testBlockRowKey() throws Exception { Assert.assertEquals("2", genomeHelper.extractChromosomeFromBlockId("2_222")); Assert.assertEquals(222, genomeHelper.extractSliceFromBlockId("2_222").longValue()); Assert.assertEquals(222 * CHUNK_SIZE, genomeHelper.extractPositionFromBlockId("2_222").longValue()); } @Test public void testVariantRowKey() throws Exception { checkVariantRowKeyGeneration(new Variant("5", 21648, "A", "T")); checkVariantRowKeyGeneration(new Variant("5", 21648, "AAAAAA", "T")); checkVariantRowKeyGeneration(new Variant("5", 21648, "A", "")); checkVariantRowKeyGeneration(new Variant("5", 21648, "AAT", "TTT")); checkVariantRowKeyGeneration(new Variant("X", 21648, "", "TTT")); checkVariantRowKeyGeneration(new Variant("MT", 21648, "", "")); } public void checkVariantRowKeyGeneration(Variant variant) { byte[] variantRowkey = genomeHelper.generateVariantRowKey(variant); Variant generatedVariant = genomeHelper.extractVariantFromVariantRowKey(variantRowkey); byte[] phoenixRowKey = generateVariantRowKeyPhoenix(variant.getChromosome(), variant.getStart(), variant.getReference(), variant.getAlternate()); assertArrayEquals(variant.toString(), phoenixRowKey, variantRowkey); assertEquals(variant, generatedVariant); } @Test public void testGenerateSplitArchive() throws Exception { assertOrder(GenomeHelper.generateBootPreSplitsHuman(30, genomeHelper::generateBlockIdAsBytes)); } @Test public void testGenerateSplitVariants() throws Exception { assertOrder(GenomeHelper.generateBootPreSplitsHuman(30, genomeHelper::generateVariantRowKey)); } void assertOrder(List<byte[]> bytes) { String prev = "0"; for (byte[] bytesKey : bytes) { String key = new String(bytesKey); if (StringUtils.isAsciiPrintable(key)) { System.out.println("key = " + key); } else { System.out.println("key = " + Bytes.toHex(bytesKey)); } // System.out.println(prev + ".compareTo(" + key + ") = " + prev.compareTo(key)); assertTrue(prev.compareTo(key) < 0); prev = key; } } public byte[] generateVariantRowKeyPhoenix(String chrom, int position, String ref, String alt) { PTableImpl table; try { List<PColumn> columns = Arrays.asList( new PColumnImpl(PNameFactory.newName("CHROMOSOME"), null, PVarchar.INSTANCE, null, null, false, 0, SortOrder.ASC, null, null, false, null, false, false), new PColumnImpl(PNameFactory.newName("POSITION"), null, PUnsignedInt.INSTANCE, null, null, false, 1, SortOrder.ASC, null, null, false, null, false, false), new PColumnImpl(PNameFactory.newName("REFERENCE"), null, PVarchar.INSTANCE, null, null, true, 2, SortOrder.ASC, null, null, false, null, false, false), new PColumnImpl(PNameFactory.newName("ALTERNATE"), null, PVarchar.INSTANCE, null, null, true, 3, SortOrder.ASC, null, null, false, null, false, false) ); table = PTableImpl.makePTable(new PTableImpl(PNameFactory.newName("user"), null, "rk", 0, Collections.emptyList(), false), columns); } catch (SQLException e) { throw new RuntimeException(e); } ImmutableBytesWritable key = new ImmutableBytesWritable(); table.newKey(key, new byte[][]{Bytes.toBytes(chrom), Bytes.toBytes(position), Bytes.toBytes(ref), Bytes.toBytes(alt)}); if (key.getLength() == key.get().length) { return key.get(); } else { return Arrays.copyOf(key.get(), key.getLength()); } } }