Hello everyone:
I want the data in the form below to be read into SAS as the wanted form:
original form:
>yal1 t1 awd123456789
GATA
ACC
>yal2 t2 gfs12354687987984565621321654987
TGACAG
GC
>yal3 t3 gfs1235468798798456562132165498789879875468798652135469798987987987985465798798
ATG
TGAG
wanted form:
yal1 t1 GAT
yal1 t1 AAC
yal1 t1 C
yal2 t2 TGA
yal2 t2 CAG
yal2 t2 GC
yal3 t3 ATG
yal3 t3 TGA
yal3 t3 G
data_null_ had helped me partially deal with it, and I wonder is there any statement that could push back the
POINTER if I want to use the statment "if x="<" then PUSH THE POINTER BACK" so the statement "input @'>'" could take
effect?
Thanks for any help.
You can move the pointer back within the current input line by using + with a negative number inside of parentheses.
data test;
input char5 $char5. +(-2) char2 $char2. ;
put char5= char2= ;
cards;
12345
run;
Thank you tom!
Consider this variation on the program that discarded the partial sequences.
Thanks again data_null_! I really appreciate your code to this question!
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.