Python Forum
List/String seperation issue
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
List/String seperation issue
#9
(Sep-20-2019, 08:05 AM)perfringo Wrote:
(Sep-20-2019, 07:57 AM)YoungGrassHopper Wrote: I am struggling with getting the chunks joined in list form after they get divided in workable chunks of [['A','A','A'],['B','B','B'],['C','C','C']]

I need to get them like this : [['AAA'],['BBB'],['CCC']]
I tried ''.join(chunks) but to luck

My personal feeling is that you should clearly articulate (in spoken language) what you want achieve and then start to implement steps to reach your goal. Do you really need this structure? Not that this is particularly hard to implement (you need to add pair of squared brackets) but why you need it?

chunks = [[dna[y-x:y]] 
          for y in range(x, len(dna)+x, x) 
          if len(dna[y-x:y]) == 3]

Well I know there is probably a easier way to achieve it, but this is the best way I could come up with, ive only been coding for 2 weeks now so that's quite likely the reason I am not finding the most efficient way of going about it.

What I need to achieve:

DNA Input: ATTATTATT  
Output: III (representing: Isoleucine, Isoleucine, Isoleucine ) 


I need to take in a arbitrary length dna sequence from user . So I can get AAAB or AAABBBCC etc.

I need to chop it in workable chunks of 3

I need to check if the codons in the sequence given by the user, matches any of the amino acids I need to check for that is why I am trying a for loop.

The elif statements below the for loop then "checks" the counter and displays if a codon matched any of the aminos I am checking for.

But like I said, I know my approach can be very inefficient and flawed
Reply


Messages In This Thread
List/String seperation issue - by YoungGrassHopper - Sep-19-2019, 01:56 PM
RE: List/String seperation issue - by ichabod801 - Sep-19-2019, 01:58 PM
RE: List/String seperation issue - by perfringo - Sep-20-2019, 06:33 AM
RE: List/String seperation issue - by perfringo - Sep-20-2019, 08:05 AM
RE: List/String seperation issue - by YoungGrassHopper - Sep-20-2019, 08:26 AM
RE: List/String seperation issue - by perfringo - Sep-20-2019, 08:47 AM
RE: List/String seperation issue - by perfringo - Sep-20-2019, 11:17 AM
RE: List/String seperation issue - by perfringo - Sep-20-2019, 11:57 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  List Comprehension Issue johnywhy 5 608 Jan-14-2024, 07:58 AM
Last Post: Pedroski55
  Python List Issue Aggie64 5 1,724 Jun-30-2022, 09:15 PM
Last Post: Aggie64
  List to table issue robdineen 2 1,490 Nov-07-2021, 09:31 PM
Last Post: robdineen
  Last caracter of a string truncated issue when working from the end of the string Teknohead23 3 1,631 Oct-03-2021, 01:08 PM
Last Post: snippsat
  Calculator code issue using list kirt6405 4 2,326 Jun-11-2021, 10:13 PM
Last Post: topfox
  Issue accessing data from Dictionary/List in the right format LuisSatch 2 2,267 Jul-25-2020, 06:12 AM
Last Post: LuisSatch
  connection string issue racone 2 3,791 Feb-03-2020, 02:22 AM
Last Post: racone
  For List Loop Issue Galdain 2 2,097 Dec-31-2019, 04:53 AM
Last Post: Galdain
  Python C API - Issue with string as arugments JRHeisey 2 2,835 Nov-30-2019, 04:53 AM
Last Post: casevh
  IndexError: List index out of range issue Adem 1 3,573 Nov-01-2019, 10:47 PM
Last Post: ichabod801

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020