Problem Explanation:
You will get a DNA strand sequence and you need to get the pair and return it as a 2D array of the base pairs. Keep in mind that the provided strand should be first always.
pairElement("ATCGA") should return [["A","T"],["T","A"],["C","G"],["G","C"],["A","T"]].
pairElement("TTGAG") should return [["T","A"],["T","A"],["G","C"],["A","T"],["G","C"]].
pairElement("CTCTA") should return [["C","G"],["T","A"],["C","G"],["T","A"],["A","T"]].
function pairElement(str) { // Return each strand as an array of two elements, the original and the pair. var paired = []; // Function to check with strand to pair. var search = function(char) { switch (char) { case "A": paired.push(["A", "T"]); break; case "T": paired.push(["T", "A"]); break; case "C": paired.push(["C", "G"]); break; case "G": paired.push(["G", "C"]); break; } }; // Loops through the input and pair. for (var i = 0; i < str.length; i++) { search(str[i]); } return paired; } // test here pairElement("GCG");Intermediate Code Solution:
function pairElement(str) { //define a map object with all pair possibilities var map = {T:"A", A:"T", G:"C", C:"G"}; //split str into a char Array strArr = str.split(""); //replace each Array item with a 2d Array using map for (var i=0;ihttps://forum.freecodecamp.or...
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/84106.html
摘要:并看不懂我不會到處亂說。好吧我努力拆解一下這個正則是什么意思匹配字符串的開始重復一次或更多次匹配除了以外的任意字符原文 problem: You will create a program that will find the missing letter from a string and return it. If there is no missing letter, the p...
摘要:法一法二使用給定的參數對句子執行一次查找和替換,然后返回新句子。法一法二把指定的字符串翻譯成。在每一個數組中將給定的字母作為第一個堿基返回。法一后項減去前項法二檢查一個值是否是基本布爾類型,并返回或。基本布爾類型即和。 Diff Two Arrays 比較兩個數組,然后返回一個新數組,該數組的元素為兩個給定數組中所有獨有的數組元素。換言之,返回兩個數組的差異。 function dif...
摘要:規則使用語言,讓函數獲取傳遞的參數,并以相反的順序返回字符串。測試用例思路方法通過把字符串轉換成數組,并使用數組的反轉數組,然后使用重新拼接成字符串方法向后循環字符串或字符數組以生成新字符串 雖然都是很簡單的算法,每個都只需5分鐘左右,但寫起來總會遇到不同的小問題,希望大家能跟我一起每天進步一點點。更多的小算法練習,可以查看我的文章。 規則 Using the JavaScript l...
摘要:今天推出了一個名叫的開源工具,用深度神經網絡來從測序數據中快速較精確識別堿基變異位點。今天,團隊,聯合同屬于旗下的生命科學兄弟公司,用了兩年多時間,研發出了一個名叫的開源工具,專門用深度神經網絡來識別結果中測序數據里這些堿基變異位點。 Google今天推出了一個名叫DeepVariant的開源工具,用深度神經網絡來從DNA測序數據中快速較精確識別堿基變異位點。學科研究的革命性進展,特別是基因...
閱讀 2449·2021-10-08 10:17
閱讀 1824·2021-09-06 15:02
閱讀 2539·2019-08-29 17:30
閱讀 2663·2019-08-29 13:24
閱讀 1522·2019-08-29 11:12
閱讀 3337·2019-08-28 17:52
閱讀 666·2019-08-26 11:30
閱讀 3577·2019-08-26 11:01