본문 바로가기

분류 전체보기

(58)
Transcriptome analysis based on machine learning reveals a role for autoinflammatory genes of chronic nonbacterial osteomyelitis (CNO) Materials and methodsDataset download and preprocessingOnly two eligible RNA-seq datasets (GSE133378 and GSE187429) in GEO. https://ftp.ncbi.nlm.nih.gov/geo/series/GSE133nnn/GSE133378/ Index of /geo/series/GSE133nnn/GSE133378 ftp.ncbi.nlm.nih.govNCBI GEO (Gene Expression Omnibus) 데이터베이스는 유전자 발현 및 기타 기능 유전체 데이터의 공개 저장소입니다. 해당 링크에서 4개의 디렉토리는 각기 다른 형식과 목적으로 데이터를 제공합니다. 각 디렉토리의 차이점은 다음과 같습니다: 1. **m..
Java Software Solution Ch7_PP3 PP 7.3 Write a class called SalesTeam that represents a team of salespeople. Each salesperson on the team is represented by the SalesPerson class of PP 7.2. Each team has a name, and the constructor needs only to accept the name of the team. Use an ArrayList to store the team members. Provide a method called addSalesPerson that accepts a SalesPerson object. Provide a method called weeklyReport t..
Java Software Solution Ch7_PP2 PP 7.2 Create a class called SalesPerson that represents a salesperson in an organization. The SalesPerson class should have the name, the phone number, and the assigned district of a salesperson. Each salesperson acquires a certain sale amount every day. Provide a constructor that sets all instance values based on parameter values. Overload the constructor such that each daily sale amount for a..
Java Software Soution Ch7_PP8 PP 7.8 Write a Java interface called Lockable that includes the following methods: setKey, lock, unlock, and locked. The setKey, lock, and unlock methods take an integer parameter that represents the key. The setKey method establishes the key. The lock and unlock methods lock and unlock the object, but only if the key passed in is correct. The locked method returns a boolean that indicates wheth..
Java Software Solution Ch11_PP3 ; Exception Class PP 11.3 Suppose in a particular business all documents are given a twocharacter designation starting with either U, C, or P, standing for unclassified, confidential, or proprietary. Create an exception class called InvalidDocumentCodeException, designed to be thrown when an improper designation for a document is encountered during processing. If a document designation is encountered that doesn’t..
Java Software Solution Ch11_ PP1 ; Exception Class (try-catch) PP 11.1 Write a program that creates an exception class called StringTooLongException, designed to be thrown when a string is discovered that has too many characters in it. In the main driver of the program, read strings from the user until the user enters "DONE". If a string is entered that has too many characters (say 20), throw the exception. Allow the thrown exception to terminate the progra..
Java Software Solution Ch10_PP3 ; Interface PP 10.3 Implement the Speaker interface described in Section 10.3, and create three classes that implement Speaker in various ways. Create a driver class whose main method instantiates some of these objects and tests their abilities. Speaker.interfacepublic interface Speaker { public void speak(); public void announce(String str);} Singer.javapublic class Singer implements Speaker{ public void s..
Linear Search Algorithm (선형 탐색) _ average-case performance Analyze the averagecase performance of the linear search algorithm, if exactly half the time the element x is not in the list, and if x is in the list, it is equally likely to be in any position. If the element is not in the list, then 2n+2 comparisons are needed : two for each pass through the loop, one more to get out of the loop, and one more for the statement just after the loop..